Skip to content

Commit 314670e

Browse files
committed
read version from pyproject file
1 parent 5977d4a commit 314670e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/hyperactive/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
# Email: simon.blanke@yahoo.com
33
# License: MIT License
44

5-
__version__ = "4.7.0"
5+
import importlib.metadata
6+
7+
__version__ = importlib.metadata.version("hyperactive")
68
__license__ = "MIT"
79

810

0 commit comments

Comments
 (0)