-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·40 lines (36 loc) · 1.13 KB
/
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
#!/usr/bin/env python3
from setuptools import setup
version = "0.1"
setup(
name="ical_to_mqtt",
packages=["ical_to_mqtt"],
install_requires=[
"icalevents @ git+ssh://[email protected]/dhavlik/icalevents.git@master#egg=icalevents",
"paho-mqtt"
],
version=version,
description="Creates mqtt messages from ical alarms.",
author="nilo",
url="https://github.com/Eigenbaukombinat/ical_to_mqtt",
keywords=["iCal"],
entry_points={
"console_scripts": [
"ical2mqtt = ical_to_mqtt:main"
]
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description="""\
Create mqtt messages from ical alarms.
--------------------------------------
for Details see https://github.com/Eigenbaukombinat/ical_to_mqtt
""",
)