forked from zigpy/zha-device-handlers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (20 loc) · 750 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
"""Setup module for ZHAQuirks."""
import pathlib
from setuptools import find_packages, setup
VERSION = "0.0.79"
setup(
name="zha-quirks",
version=VERSION,
description="Library implementing Zigpy quirks for ZHA in Home Assistant",
long_description=(pathlib.Path(__file__).parent / "README.md").read_text(),
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.45.1"],
tests_require=["pytest"],
)