forked from andreasofthings/python-lightify
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
25 lines (24 loc) · 870 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
from setuptools import setup
setup(
name='lightify',
version='1.0.7.3',
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',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet',
],
)