We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1afdeac commit 9ef1996Copy full SHA for 9ef1996
setup.py
@@ -19,13 +19,17 @@
19
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
20
long_description = f.read()
21
22
+# Get the version from the VERSION file
23
+with open(path.join(here, 'VERSION'), encoding='utf-8') as f:
24
+ version = f.read()
25
+
26
setup(
27
name='bunq_sdk',
28
29
# Versions should comply with PEP440. For a discussion on single-sourcing
30
# the version across setup.py and the project code, see
31
# https://packaging.python.org/en/latest/single_source_version.html
- version='1.14.18',
32
+ version=version,
33
34
description='bunq Python SDK',
35
long_description=long_description,
0 commit comments