Skip to content

Commit 973df63

Browse files
Create setup.py
1 parent 22af2e8 commit 973df63

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

setup.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)