We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22af2e8 commit 973df63Copy full SHA for 973df63
setup.py
@@ -0,0 +1,20 @@
1
+from setuptools import setup
2
+
3
+setup(
4
+ name = 'PySeitchbot',
5
+ packages = ['switchbot'],
6
+ install_requires=['bluepy'],
7
+ version = '0.1',
8
+ description = 'A library to communicate with Switcbot',
9
+ author='Daniel Hoyer Iversen',
10
+ url='https://github.com/Danielhiversen/pySwitchbot/',
11
+ classifiers=[
12
+ 'Development Status :: 3 - Alpha',
13
+ 'Environment :: Other Environment',
14
+ 'Intended Audience :: Developers',
15
+ 'Operating System :: OS Independent',
16
+ 'Programming Language :: Python',
17
+ 'Topic :: Home Automation',
18
+ 'Topic :: Software Development :: Libraries :: Python Modules'
19
+ ]
20
+)
0 commit comments