forked from kellerza/pysma
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (32 loc) · 979 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
30
31
32
33
34
35
36
#!/usr/bin/env python
"""pysma library setup."""
from pathlib import Path
from setuptools import setup
VERSION = "0.3.19.1"
URL = "https://github.com/littleyoda/pysma"
setup(
name="pysma-plus",
version=VERSION,
description="Library to interface SMA Devices via Speedwire, WebConnect, EnnexOS and Energy Meter Protocol",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
url=URL,
download_url="{}/tarball/{}".format(URL, VERSION),
author="Sven Bursch-Osewold, Johann Kellerman and other",
author_email="[email protected]",
license="MIT",
packages=["pysma-plus"],
python_requires=">=3.9",
install_requires=[
"aiohttp>3.3,<4",
"attrs>18",
"jmespath<2",
"dataclasses-struct>0.8",
"untangle>=1.2.1",
"pymodbus>=3.6.9",
"xmlschema>=3.3.0",
"pymodbus>3.7.4",
],
zip_safe=True,
include_package_data=False,
)