forked from zigpy/bellows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 829 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
"""Setup module for bellows"""
from setuptools import find_packages, setup
setup(
name="bellows",
version="0.4.0",
description="Library implementing EZSP and ZigBee",
url="http://github.com/rcloran/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',
'pycrypto',
'crccheck',
'pure_pcapy3==1.0.1',
'pyserial-asyncio',
],
dependency_links=[
'https://github.com/rcloran/pure-pcapy-3/archive/e289c7d7566306dc02d8f4eb30c0358b41f40f26.zip#egg=pure_pcapy3-1.0.1',
],
tests_require=[
'pytest',
],
)