forked from bkogler/goecharger-api-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 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
from setuptools import setup # type: ignore
# read the contents of README.md file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='goecharger-api-lite',
version='1.5.1',
packages=['goecharger_api_lite'],
url='https://github.com/bkogler/goecharger-api-lite',
license='MIT',
author='Bernhard Kogler',
author_email='[email protected]',
description='Lightweight Python API for accessing go-eCharger EV wallboxes using local HTTP API v2',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="go-e EV wallbox electric charger Gemini flex HOMEfix HOME+ HTTP API v2",
python_requires='>=3.10',
install_requires=[
'aiohttp',
'aiodns',
]
)