This repository was archived by the owner on Mar 19, 2025. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
31 lines (28 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (28 loc) · 1.04 KB
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
importsetuptools
long_description='''
# Python-solaredge
Python-solaredge (*pysolaredge* for short) is a library for decrypting and
decoding messages from a SolarEdge photo-voltaic installation (solar panels,
optimizers and inverters, mainly). Such an installation normally reports its
statistics to a server operated by SolarEdge. This libray allows you to decode
the data yourself, and use it how you see fit.
'''
setuptools.setup(
name="pysolaredge",
version="0.5.5",
author="Martijn Grendelman",
author_email="m@rtijn.net",
description="Library for decrypting and decoding messages from SolarEdge inverters",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tinuzz/python-solaredge",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
),
install_requires=[
"pycrypto",
],
)