-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
27 lines (22 loc) · 853 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
"""Setup module for zigpy-cc"""
import os
from setuptools import find_packages, setup
import zigpy_cc
this_directory = os.path.join(os.path.abspath(os.path.dirname(__file__)))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="zigpy-cc",
version=zigpy_cc.__version__,
description="A library which communicates with "
"Texas Instruments CC2531 radios for zigpy",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/zigpy/zigpy-cc",
author="Balazs Sandor",
author_email="[email protected]",
license="GPL-3.0",
packages=find_packages(exclude=["*.tests"]),
install_requires=["pyserial-asyncio", "zigpy>=0.23.1"],
tests_require=["asynctest", "pytest", "pytest-asyncio"],
)