forked from zigpy/bellows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 793 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
"""Setup module for bellows"""
from setuptools import find_packages, setup
setup(
name="bellows",
version="0.7.0",
description="Library implementing EZSP",
url="http://github.com/zigpy/bellows",
author="Russell Cloran",
author_email="rcloran@gmail.com",
license="GPL-3.0",
packages=find_packages(exclude=['*.tests']),
entry_points={
'console_scripts': ['bellows=bellows.cli.main:main'],
},
install_requires=[
'Click',
'click-log==0.2.0',
'pure_pcapy3==1.0.1',
'pyserial-asyncio',
'zigpy',
],
dependency_links=[
'https://github.com/rcloran/pure-pcapy-3/archive/e289c7d7566306dc02d8f4eb30c0358b41f40f26.zip#egg=pure_pcapy3-1.0.1',
],
tests_require=[
'pytest',
],
)