forked from ikalchev/HAP-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (40 loc) · 1.03 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
setup(
name="HAP-python",
description="HomeKit Accessory Protocol implementation in python3",
author="Ivan Kalchev",
version="1.1.9",
url="https://github.com/ikalchev/HAP-python.git",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
],
license="Apache-2.0",
packages=[
"pyhap",
"pyhap.accessories"
],
install_requires=[
"pycryptodome",
"tlslite-ng",
"ed25519",
"zeroconf",
"curve25519-donna",
"pyqrcode",
"base36"
],
extras_require={
"dev": [
"pytest",
"tox",
],
},
package_data={
"pyhap": ["resources/*"],
}
)