|
9 | 9 |
|
10 | 10 | here = os.path.abspath(os.path.dirname(__file__)) |
11 | 11 |
|
12 | | -with open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme_file: |
| 12 | +with open(os.path.join(here, "README.rst"), encoding="utf-8") as readme_file: |
13 | 13 | long_description = readme_file.read() |
14 | 14 |
|
15 | 15 | setup( |
16 | | - name='luftdaten', |
17 | | - version='0.6.4', |
18 | | - description='Python API for interacting with luftdaten.info.', |
| 16 | + name="luftdaten", |
| 17 | + version="0.6.4", |
| 18 | + description="Python API for interacting with luftdaten.info.", |
19 | 19 | long_description=long_description, |
20 | | - url='https://github.com/fabaff/python-luftdaten', |
21 | | - download_url='https://github.com/fabaff/python-luftdaten/releases', |
22 | | - author='Fabian Affolter', |
23 | | - |
24 | | - license='MIT', |
25 | | - install_requires=['aiohttp>=3.7.4,<4', 'async_timeout<4'], |
26 | | - packages=['luftdaten'], |
| 20 | + url="https://github.com/fabaff/python-luftdaten", |
| 21 | + download_url="https://github.com/fabaff/python-luftdaten/releases", |
| 22 | + author="Fabian Affolter", |
| 23 | + |
| 24 | + license="MIT", |
| 25 | + install_requires=["aiohttp>=3.7.4,<4", "async_timeout<4"], |
| 26 | + packages=["luftdaten"], |
27 | 27 | zip_safe=True, |
28 | 28 | classifiers=[ |
29 | | - 'Development Status :: 3 - Alpha', |
30 | | - 'Environment :: Console', |
31 | | - 'Intended Audience :: Developers', |
32 | | - 'License :: OSI Approved :: MIT License', |
33 | | - 'Operating System :: MacOS :: MacOS X', |
34 | | - 'Operating System :: Microsoft :: Windows', |
35 | | - 'Operating System :: POSIX', |
36 | | - 'Programming Language :: Python :: 3.6', |
37 | | - 'Programming Language :: Python :: 3.7', |
38 | | - 'Topic :: Utilities', |
| 29 | + "Development Status :: 3 - Alpha", |
| 30 | + "Environment :: Console", |
| 31 | + "Intended Audience :: Developers", |
| 32 | + "License :: OSI Approved :: MIT License", |
| 33 | + "Operating System :: MacOS :: MacOS X", |
| 34 | + "Operating System :: Microsoft :: Windows", |
| 35 | + "Operating System :: POSIX", |
| 36 | + "Programming Language :: Python :: 3.6", |
| 37 | + "Programming Language :: Python :: 3.7", |
| 38 | + "Topic :: Utilities", |
39 | 39 | ], |
40 | 40 | ) |
0 commit comments