aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python/usrp_mpm
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2018-03-30 14:19:35 -0700
committerMartin Braun <martin.braun@ettus.com>2018-04-02 15:27:05 -0700
commita5b87ab7c4a6834acc7587ffc4a769854b9d48b4 (patch)
treea9c16e82b6556bb5653052f8681e7d267c33085d /mpm/python/usrp_mpm
parentc7f52870805c9d9f79f15c80e9a4ad53ed88c857 (diff)
downloaduhd-a5b87ab7c4a6834acc7587ffc4a769854b9d48b4.tar.gz
uhd-a5b87ab7c4a6834acc7587ffc4a769854b9d48b4.tar.bz2
uhd-a5b87ab7c4a6834acc7587ffc4a769854b9d48b4.zip
mpm: cmake: Add git hash and version info to Python module
Reviewed-by: Brent Stapleton <brent.stapleton@ettus.com>
Diffstat (limited to 'mpm/python/usrp_mpm')
-rw-r--r--mpm/python/usrp_mpm/__init__.py3
-rw-r--r--mpm/python/usrp_mpm/periph_manager/__init__.py.in3
2 files changed, 6 insertions, 0 deletions
diff --git a/mpm/python/usrp_mpm/__init__.py b/mpm/python/usrp_mpm/__init__.py
index 00cbcc987..6b6b86d08 100644
--- a/mpm/python/usrp_mpm/__init__.py
+++ b/mpm/python/usrp_mpm/__init__.py
@@ -18,3 +18,6 @@ from . import cores
from . import chips
from . import gpsd_iface
from .mpmlog import get_main_logger
+
+__version__ = periph_manager.__version__
+__githash__ = periph_manager.__githash__
diff --git a/mpm/python/usrp_mpm/periph_manager/__init__.py.in b/mpm/python/usrp_mpm/periph_manager/__init__.py.in
index f507a6808..1a84ca3a4 100644
--- a/mpm/python/usrp_mpm/periph_manager/__init__.py.in
+++ b/mpm/python/usrp_mpm/periph_manager/__init__.py.in
@@ -7,6 +7,9 @@
periph_manager __init__.py
"""
+__version__ = "${MPM_VERSION_MAJOR}.${MPM_VERSION_API}.${MPM_VERSION_ABI}.${MPM_VERSION_PATCH}"
+__githash__ = "${MPM_GIT_HASH_RAW}"
+
from .base import PeriphManagerBase
# This is where the import magic happens