-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 748 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 748 Bytes
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='iplight',
version='0.0.0.1',
description='iplight is a client for network controled lights',
long_description='iplight is a client for network controled lights using tlv protocol',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: tcpip :: tlv :: iot',
],
keywords='iplight iot tlv',
url='https://github.com/gabbacode/iplight',
author='gabba',
author_email='flyingcircus@example.com',
license='MIT',
packages=['iplight'],
install_requires=[
'asyncio'
],
include_package_data=True,
zip_safe=False)