-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
32 lines (30 loc) · 1.04 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyglowmarkt",
version="0.5.5",
author="Cybermaggedon",
description="Python API for accessing Hildebrand/Glowmarkt/Bright API to smart meter data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cybermaggedon/pyglowmarkt",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
download_url = "https://github.com/cybermaggedon/pyglowmarkt/archive/refs/tags/v0.5.5.tar.gz",
install_requires=[
"requests", "paho-mqtt"
],
scripts=[
"scripts/glowmarkt-dump",
"scripts/glowmarkt-csv",
"scripts/glowmarkt-today",
"scripts/glowmarkt-mqtt",
]
)