We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed5fe1c commit a3d1e34Copy full SHA for a3d1e34
feldfreund_devkit/__init__.py
@@ -4,6 +4,7 @@
4
from .robot_locator import RobotLocator
5
from .system import System
6
from .target_locator import TargetLocator
7
+from .version import __version__
8
9
__all__ = [
10
'Feldfreund',
@@ -15,5 +16,6 @@
15
16
'RobotLocator',
17
'System',
18
'TargetLocator',
19
+ '__version__',
20
'log_configuration',
21
]
feldfreund_devkit/version.py
@@ -0,0 +1,3 @@
1
+from importlib.metadata import version
2
+
3
+__version__ = version('feldfreund_devkit')
0 commit comments