forked from zigpy/zigpy-znp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 894 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
33
34
35
"""Setup module for zigpy-znp"""
import pathlib
from setuptools import find_packages, setup
import zigpy_znp
root = pathlib.Path(__file__).parent
setup(
name="zigpy-znp",
version=zigpy_znp.__version__,
description="A library for zigpy which communicates with TI ZNP radios",
long_description=(root / "README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/zha-ng/zigpy-znp",
author="Alexei Chetroi",
author_email="[email protected]",
license="GPL-3.0",
packages=find_packages(exclude=["*.tests"]),
install_requires=[
"attrs",
"pyserial-asyncio",
"zigpy>=0.22.1",
"async_timeout",
"voluptuous",
"coloredlogs",
],
tests_require=[
"asynctest",
"pytest>=5.4.5",
"pytest-asyncio>=0.12.0",
"pytest-mock",
],
)