-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
39 lines (37 loc) · 1.17 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="alarmpy",
version="1.6.0",
author="Yuval Adam",
author_email="[email protected]",
description="Pikud Ha'oref Alarm Tracking",
license="GPLv3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yuvadm/alarmpy",
project_urls={
"Bug Tracker": "https://github.com/yuvadm/alarmpy/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Environment :: Console",
],
packages=setuptools.find_packages(exclude="tests"),
package_data={"alarmpy": ["data/*.json"]},
python_requires=">=3.6",
install_requires=["requests", "click"],
extras_require={
"mqttnotify": ["paho-mqtt"],
},
entry_points={
"console_scripts": [
"alarmpy = alarmpy:cli",
"alarmpynotify = alarmpy:cli [mqttnotify]",
]
},
)