forked from IOT-DSA/sdk-dslink-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 711 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 711 Bytes
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
from setuptools import setup
setup(
name="dslink",
version="0.7.3.1",
description="DSLink SDK for Python",
url="http://github.com/NorbertHeusser/sdk-dslink-python.git",
author="Logan Gorence",
author_email="Logan.Gorence@AcuityBrands.com",
license="Apache 2.0",
packages=[
"dslink",
"dslink.rubenesque",
"dslink.rubenesque.codecs",
"dslink.rubenesque.curves",
"dslink.rubenesque.signatures",
],
install_requires=[
"autobahn == 0.15.0",
"requests == 2.10.0",
"zope.interface == 4.2.0",
"Twisted == 16.3.0",
"msgpack-python == 0.4.8",
"pyOpenSSL == 17.5.0"
],
use_2to3=True
)