-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (38 loc) · 1.29 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
40
41
from setuptools import setup
from tibber import __version__
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="tibber.py",
long_description=long_description,
long_description_content_type='text/markdown',
packages=["tibber", "tibber.networking", "tibber.exceptions", "tibber.types"],
install_requires=[
"gql>=3.4.0",
"gql[aiohttp]>=3.4.0",
"gql[websockets]>=3.4.0",
"graphql-core>=3.2.3",
"backoff>=2.2.1",
"asyncio-atexit>=1.0.1",
],
license="MIT",
version=__version__,
description="A python wrapper for the Tibber API.",
python_requires=">=3.9.0",
author="BeatsuDev",
author_email="",
url="https://tibberpy.readthedocs.io/en/latest/",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Documentation :: Sphinx",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)