|
1 | 1 | from setuptools import setup |
2 | 2 |
|
3 | 3 | setup( |
4 | | - name = 'PySwitchbot', |
5 | | - packages = ['switchbot'], |
6 | | - install_requires=['async_timeout>=4.0.1', 'bleak', 'bleak-retry-connector>=1.2.0'], |
7 | | - version = '0.17.3', |
8 | | - description = 'A library to communicate with Switchbot', |
9 | | - author='Daniel Hjelseth Hoyer', |
10 | | - url='https://github.com/Danielhiversen/pySwitchbot/', |
11 | | - license='MIT', |
| 4 | + name="PySwitchbot", |
| 5 | + packages=["switchbot", "switchbot.devices", "switchbot.adv_parsers"], |
| 6 | + install_requires=["async_timeout>=4.0.1", "bleak", "bleak-retry-connector>=1.2.0"], |
| 7 | + version="0.17.3", |
| 8 | + description="A library to communicate with Switchbot", |
| 9 | + author="Daniel Hjelseth Hoyer", |
| 10 | + url="https://github.com/Danielhiversen/pySwitchbot/", |
| 11 | + license="MIT", |
12 | 12 | classifiers=[ |
13 | | - 'Development Status :: 3 - Alpha', |
14 | | - 'Environment :: Other Environment', |
15 | | - 'Intended Audience :: Developers', |
16 | | - 'Operating System :: OS Independent', |
17 | | - 'Programming Language :: Python', |
18 | | - 'Topic :: Home Automation', |
19 | | - 'Topic :: Software Development :: Libraries :: Python Modules' |
20 | | - ] |
| 13 | + "Development Status :: 3 - Alpha", |
| 14 | + "Environment :: Other Environment", |
| 15 | + "Intended Audience :: Developers", |
| 16 | + "Operating System :: OS Independent", |
| 17 | + "Programming Language :: Python", |
| 18 | + "Topic :: Home Automation", |
| 19 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 20 | + ], |
21 | 21 | ) |
0 commit comments