-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 1.01 KB
/
setup.py
File metadata and controls
31 lines (27 loc) · 1.01 KB
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
from setuptools import setup, find_packages
from codecs import open
setup(
name='milight',
version='0.6',
description='Controller for milight/limitlessled Wi-Fi LEDs',
long_description='Visit GitHub for more information: https://github.com/McSwindler/python-milight',
url='https://github.com/McSwindler/python-milight',
author='McSwindler',
author_email='wilingua@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Home Automation',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='limitlessled easybulb milight led wifi applight applamp ledme dekolight ilight',
packages=["milight"],
install_requires=[],
test_suite="tests",
)