forked from sblibs/pySwitchbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 658 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(
name = 'PySwitchbot',
packages = ['switchbot'],
install_requires=['bluepy'],
version = '0.8.0',
description = 'A library to communicate with Switchbot',
author='Daniel Hoyer Iversen',
url='https://github.com/Danielhiversen/pySwitchbot/',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)