forked from keton/etrv2mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 940 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
import setuptools
setuptools.setup(
name="etrv2mqtt",
version="1.0.0",
author="Michał Lower",
author_email="keton22@gmail.com",
description="MQTT bridge for Danfoss Eco BLE thermostats and Home Assistant",
url="https://github.com/keton/etrv2mqtt",
packages=['etrv2mqtt', 'etrv2mqtt.schemas'],
package_data={
"etrv2mqtt.schemas": ["*.schema.json"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
entry_points={
"console_scripts": [
"etrv2mqtt = etrv2mqtt.cli:entrypoint",
]
},
install_requires=('jsonschema', 'loguru', 'paho-mqtt', 'schedule',
'libetrv @ git+https://github.com/keton/libetrv.git@fixes/invalidate_data_on_disconnect#egg=libetrv',),
setup_requires=('wheel'),
)