forked from Sjord/growatt_api_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (27 loc) · 833 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
#!/usr/bin/env python
from setuptools import setup
requirements = ["requests"]
try:
import enum
except:
requirements += ["enum34"]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="growatt",
version="0.0.2",
description="Growatt API for photovoltaic statistics",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Sjord/growatt_api_client",
author="Sjoerd Langkemper",
packages=["growatt"],
install_requires=requirements,
license="OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
test_suite="test",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python",
],
)