-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (32 loc) · 832 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
#!/usr/bin/env python
"""multisma2 setup."""
from pathlib import Path
from setuptools import setup
VERSION = "1.2.2"
URL = "https://github.com/sillygoose/multisma2"
setup(
name="multisma2",
version=VERSION,
description="SMA Sunny Boy inverter data collection utility",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
url=URL,
download_url="{}/tarball/{}".format(URL, VERSION),
author="Rick Naro",
author_email="[email protected]",
license="MIT",
install_requires=[
"aiohttp",
"asyncio",
"async_timeout",
"jmespath",
"influxdb-client",
"paho-mqtt",
"astral",
"pysolar",
"python-dateutil",
"python-configuration",
"pyyaml",
],
zip_safe=True,
)