forked from zigpy/zha-device-handlers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (23 loc) · 794 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
"""Setup module for ZHAQuirks."""
from setuptools import find_packages, setup
VERSION = "0.0.39"
def readme():
"""Print long description."""
with open("README.md") as f:
return f.read()
setup(
name="zha-quirks",
version=VERSION,
description="Library implementing Zigpy quirks for ZHA in Home Assistant",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/dmulcahey/zha-device-handlers",
author="David F. Mulcahey",
author_email="[email protected]",
license="Apache License Version 2.0",
keywords="zha quirks homeassistant hass",
packages=find_packages(exclude=["*.tests"]),
python_requires=">=3",
install_requires=["zigpy>=0.20.0"],
tests_require=["pytest"],
)