We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bd5bb31 + 1063820 commit ab25ec0Copy full SHA for ab25ec0
pynitrokey/VERSION
@@ -1 +1 @@
1
-0.4.3
+0.4.3.1
win_setup.py
@@ -1,7 +1,6 @@
+import pathlib
2
from cx_Freeze import setup, Executable
3
-# Dependencies are automatically detected, but it might need
4
-# fine tuning.
5
buildOptions = dict(packages = [], excludes = [])
6
7
msiOptions = dict(
@@ -15,8 +14,11 @@
15
14
Executable('nitropy.py', base=base)
16
]
17
+__version_path__ = pathlib.Path(__file__).parent.resolve().absolute() / "pynitrokey" / "VERSION"
18
+__version__ = open(__version_path__).read().strip()
19
+
20
setup(name='pynitrokey',
- version = '0.4.2',
21
+ version = __version__,
22
description = 'Nitrokey Python Tools',
23
options = dict(build_exe = buildOptions,
24
bdist_msi = msiOptions),
0 commit comments