forked from Tomcat42/pylontech-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 955 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
from setuptools import setup, find_packages
setup(
name="pylontech",
version="0.1.3",
packages=find_packages(include=['pylontech', 'pylontech.*']),
url="https://github.com/Tomcat42/pylontech-python/",
author="Bernd Singer",
author_email="[email protected]",
description=("Communicate to Pylontech batteries using a RS485 interface"),
license="MIT",
keywords="pylontech pylon RS485 lithium battery US2000 US2000C US3000",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=["pyserial"],
)