forked from tfriedel/python-lightify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 793 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
from setuptools import setup
setup(
name='lightify',
version='1.0.7.2',
packages=['lightify'],
include_package_data=True,
license='Apache License (2.0)',
description='A library to work with OSRAM lightify.',
long_description='A library to work with OSRAM lightify. Threadsafe.',
url='https://github.com/tfriedel/python-lightify',
author='Thomas Friedel',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', # example license
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Internet',
],
)