-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 967 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
26
27
28
29
30
31
32
"""Setup module for zha-websocket-server."""
import pathlib
from setuptools import find_packages, setup
setup(
name="zhaws",
version="2022.02.13",
description="Library implementing a Zigbee websocket server",
long_description=(pathlib.Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/zigpy/zha-websocket-server",
author="David F. Mulcahey",
author_email="david.mulcahey@icloud.com",
license="GPL-3.0",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
"colorlog",
"pydantic",
"websockets",
"zigpy==0.44.2",
"bellows==0.29.0",
"zha-quirks==0.0.72",
"zigpy-deconz==0.16.0",
"zigpy-xbee==0.14.0",
"zigpy-zigate==0.8.0",
"zigpy-znp==0.7.0",
],
extras_require={"server": ["uvloop"]},
package_data={"": ["appdb_schemas/schema_v*.sql"]},
)