forked from allanbunch/beautifulhue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 754 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
from distutils.core import setup
from beautifulhue import __version__
setup(
name='BeautifulHue',
version=__version__,
author='Allan Bunch',
packages=['beautifulhue', 'beautifulhue.api', 'beautifulhue.libs'],
url='https://github.com/allanbunch/beautifulhue',
license='MIT',
description='A Python module for the Philips Hue Lighting System API.',
long_description=open('README.txt').read(),
platforms="Cross Platform",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Software Development',
],
)