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.
1 parent f9a7431 commit 2f53962Copy full SHA for 2f53962
setup.py
@@ -14,16 +14,16 @@
14
15
here = os.path.abspath(os.path.dirname(__file__))
16
17
-with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
18
- long_description = f.read()
+with open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme_file:
+ long_description = readme_file.read()
19
20
if sys.argv[-1] == 'publish':
21
os.system('python3 setup.py sdist upload')
22
sys.exit()
23
24
setup(
25
name='luftdaten',
26
- version='0.3.4',
+ version='0.4.0',
27
description='Python API for interacting with luftdaten.info.',
28
long_description=long_description,
29
url='https://github.com/fabaff/python-luftdaten',
0 commit comments