forked from zigpy/bellows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 835 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
"""Setup module for bellows"""
from setuptools import find_packages, setup
import bellows
setup(
name="bellows",
version=bellows.__version__,
description="Library implementing EZSP",
url="http://github.com/zigpy/bellows",
author="Russell Cloran",
author_email="[email protected]",
license="GPL-3.0",
packages=find_packages(exclude=["tests", "tests.*"]),
entry_points={"console_scripts": ["bellows=bellows.cli.main:main"]},
install_requires=[
"click",
"click-log>=0.2.1",
"dataclasses;python_version<'3.7'",
"pure_pcapy3==1.0.1",
"pyserial-asyncio",
"voluptuous",
"zigpy>=0.21.0",
],
dependency_links=["https://codeload.github.com/rcloran/pure-pcapy-3/zip/master"],
tests_require=["asynctest", "pytest", "pytest-asyncio"],
)