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