forked from rytilahti/python-yeelightbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (25 loc) · 880 Bytes
/
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
26
27
28
29
30
31
32
from setuptools import setup
from yeelightble.version import __version__
setup(
name='yeelightble',
version=__version__,
description='Python library for interfacing with Yeelight bluetooth lights',
url='https://github.com/vsternbach/yeelightble',
author='Vlad Sternbach',
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
keywords='yeelightble yeelight bluepy ble bluetooth candela',
packages=['yeelightble'],
python_requires='>=3.4',
install_requires=['bluepy', 'construct==2.9.52', 'click', 'websockets', 'retry'],
entry_points={
'console_scripts': [
'yeelightble=yeelightble.cli:cli',
],
},
)