-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 958 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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="htcollector",
version="1.0.1",
description="Tools to log updates from Shelly HT devices",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://varkenvarken.github.io/shellyhtcollector2/",
author="varkenvarken",
author_email="test@example.com",
license="GPLv3",
packages=["htcollector"],
python_requires=">=3.8",
install_requires=["mariadb==1.1.4", "python-dateutil==2.8.2"],
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)