|
4 | 4 |
|
5 | 5 | here = os.path.abspath(os.path.dirname(__file__))
|
6 | 6 |
|
7 |
| -with open(os.path.join(here, 'README.md'), encoding='utf-8') as readme_file: |
| 7 | +with open(os.path.join(here, "README.md"), encoding="utf-8") as readme_file: |
8 | 8 | long_description = readme_file.read()
|
9 | 9 |
|
10 | 10 | setup(
|
11 |
| - name='netdisco', |
12 |
| - version='2.8.1', |
13 |
| - description='Discover devices on your local network', |
| 11 | + name="netdisco", |
| 12 | + version="2.8.2", |
| 13 | + description="Discover devices on your local network", |
14 | 14 | long_description=long_description,
|
15 |
| - long_description_content_type='text/markdown', |
16 |
| - url='https://github.com/home-assistant/netdisco', |
17 |
| - author='Paulus Schoutsen', |
18 |
| - author_email='Paulus@PaulusSchoutsen.nl', |
19 |
| - license='Apache License 2.0', |
20 |
| - install_requires=['requests>=2.0', 'zeroconf>=0.27.1'], |
21 |
| - python_requires='>=3', |
22 |
| - packages=find_packages(exclude=['tests', 'tests.*']), |
| 15 | + long_description_content_type="text/markdown", |
| 16 | + url="https://github.com/home-assistant/netdisco", |
| 17 | + author="Paulus Schoutsen", |
| 18 | + author_email="Paulus@PaulusSchoutsen.nl", |
| 19 | + license="Apache License 2.0", |
| 20 | + install_requires=["requests>=2.0", "zeroconf>=0.27.1"], |
| 21 | + python_requires=">=3", |
| 22 | + packages=find_packages(exclude=["tests", "tests.*"]), |
23 | 23 | zip_safe=False,
|
24 | 24 | classifiers=[
|
25 |
| - 'Development Status :: 5 - Production/Stable', |
26 |
| - 'Environment :: Console', |
27 |
| - 'Intended Audience :: Developers', |
28 |
| - 'License :: OSI Approved :: Apache Software License', |
29 |
| - 'Operating System :: POSIX', |
30 |
| - 'Programming Language :: Python :: 3', |
31 |
| - 'Topic :: Utilities', |
32 |
| - 'Topic :: Home Automation', |
33 |
| - 'Topic :: System :: Networking', |
| 25 | + "Development Status :: 5 - Production/Stable", |
| 26 | + "Environment :: Console", |
| 27 | + "Intended Audience :: Developers", |
| 28 | + "License :: OSI Approved :: Apache Software License", |
| 29 | + "Operating System :: POSIX", |
| 30 | + "Programming Language :: Python :: 3", |
| 31 | + "Topic :: Utilities", |
| 32 | + "Topic :: Home Automation", |
| 33 | + "Topic :: System :: Networking", |
34 | 34 | ],
|
35 | 35 | )
|
0 commit comments