forked from nkaminski/csrmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 1.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
setup(name='csrmesh',
version='0.8.0',
description='Reverse engineered implementation of the CSRMesh bridge protocol',
long_description='Reverse engineered implementation of the CSRMesh bridge protocol. Currently only capable of interfacing with Feit HomeBrite smart bulbs and MOVE controller. Support for additional devices can easily be added. Requires bluez gatttool to transmit packets.',
url='https://github.com/nkaminski/csrmesh',
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Home Automation',
],
keywords='bluetooth csrmesh qualcomm csr BTLE',
author='Nash Kaminski, Tomas Salfischberger',
author_email='[email protected], [email protected]',
license='GPLv3',
packages=['csrmesh'],
install_requires=[
'pycrypto',
],
scripts=['bin/csrmesh-cli'],
zip_safe=False)