Skip to content

Commit aca522f

Browse files
authored
Refactor to make it easier to add new devices (#61)
1 parent a2971ba commit aca522f

File tree

23 files changed

+946
-819
lines changed

23 files changed

+946
-819
lines changed

setup.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
from setuptools import setup
22

33
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",
1212
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+
],
2121
)

0 commit comments

Comments
 (0)