We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6384f66 + 7de4731 commit 9a188f0Copy full SHA for 9a188f0
setup.py
@@ -19,7 +19,7 @@
19
20
setup(
21
name='jsonconversion',
22
- version='0.2.2',
+ version='0.2.3',
23
url='https://github.com/DLR-RM/python-jsonconversion',
24
download_url='https://github.com/DLR-RM/python-jsonconversion/archive/0.2.2.tar.gz',
25
license='BSD',
src/jsonconversion/__init__.py
@@ -8,3 +8,10 @@
8
# Contributors:
9
# Franz Steinmetz <[email protected]>
10
11
+from pkg_resources import get_distribution, DistributionNotFound
12
+
13
+try:
14
+ __version__ = get_distribution("jsonconversion").version
15
+except DistributionNotFound:
16
+ __version__ = "unknown"
17
0 commit comments