forked from zigpy/zigpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 742 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 742 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
"""Setup module for zigpy"""
import pathlib
from setuptools import find_packages, setup
import zigpy
REQUIRES = ["aiohttp", "aiosqlite>=0.16.0", "crccheck", "cryptography", "voluptuous"]
setup(
name="zigpy",
version=zigpy.__version__,
description="Library implementing a ZigBee stack",
long_description=(pathlib.Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/zigpy/zigpy",
author="Russell Cloran",
author_email="rcloran@gmail.com",
license="GPL-3.0",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=REQUIRES,
python_requires=">=3.7",
package_data={"": ["appdb_schemas/schema_v*.sql"]},
)