-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
executable file
·46 lines (38 loc) · 921 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
from setuptools import setup, find_packages
deps = [
'pyserial (==3.4)',
'pyserial_asyncio (==0.4)',
'lxml (>=2.3.2)',
'six',
'pydot',
'paho_mqtt (==1.5.0)'
]
tests_require = [
'pytype',
'parameterized',
]
setup(
name="cbus",
version="0.2",
description="Library and applications to interact with Clipsal CBus in Python.",
author="Michael Farrell",
author_email="[email protected]",
url="https://github.com/micolous/cbus",
license="LGPL3+",
requires=deps,
tests_require=tests_require,
extras_require={'test': tests_require},
# TODO: add scripts to this.
packages=find_packages(),
entry_points={
'console_scripts': [
'cbz_dump_labels = cbus.toolkit.dump_labels:main',
'cmqttd = cbus.daemon.cmqttd:main',
'cbus_fetch_protocol_docs = cbus.tools.fetch_protocol_docs:main',
'cbus_decode_packet = cbus.tools.decode_packet:main',
]
},
classifiers=[
],
)