forked from nmakel/solaredge_modbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (29 loc) · 895 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
#!/usr/bin/env python3
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="solaredge_modbus",
version="0.6.2",
description="SolarEdge Modbus parser library",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT License",
author="nmakel",
author_email="",
url="https://github.com/nmakel/solaredge_modbus",
packages=["solaredge_modbus"],
include_package_data=True,
install_requires=[
"pymodbus>=2.3.0"
],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Environment :: Console",
"Natural Language :: English",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License"
]
)