-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
28 lines (25 loc) · 972 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
from pathlib import Path
from setuptools import setup
consts = {}
exec((Path("tibber") / "const.py").read_text(encoding="utf-8"), consts) # noqa: S102
setup(
name="pyTibber",
packages=["tibber"],
install_requires=["aiohttp>=3.0.6", "gql>=3.0.0", "websockets>=10.0"],
package_data={"tibber": ["py.typed"]},
version=consts["__version__"],
description="A python3 library to communicate with Tibber",
python_requires=">=3.11.0",
author="Daniel Hjelseth Hoyer",
author_email="mail@dahoiv.net",
url="https://github.com/Danielhiversen/pyTibber",
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)