forked from Danielhiversen/pyTibber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 862 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
setup(
name="pyTibber",
packages=["tibber"],
install_requires=[
"aiohttp>=3.0.6",
"async_timeout>=1.4.0",
"websockets>=6.0",
"graphql-subscription-manager>=0.3.1",
"pytz",
"python-dateutil",
],
version="0.12.0",
description="A python3 library to communicate with Tibber",
python_requires=">=3.5.3",
author="Daniel Hoyer Iversen",
author_email="[email protected]",
url="https://github.com/Danielhiversen/pyTibber",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)