forked from zigpy/zigpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (21 loc) · 783 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 zigpy"""
from os import path
from setuptools import find_packages, setup
import zigpy
this_directory = path.join(path.abspath(path.dirname(__file__)))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="zigpy",
version=zigpy.__version__,
description="Library implementing a ZigBee stack",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/zigpy/zigpy",
author="Russell Cloran",
author_email="[email protected]",
license="GPL-3.0",
packages=find_packages(exclude=["*.tests"]),
install_requires=["aiohttp", "crccheck", "pycryptodome", "voluptuous"],
tests_require=["asynctest", "pytest"],
)