forked from ngardiner/TWCManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (38 loc) · 1.19 KB
/
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
36
37
38
39
40
#!/usr/bin/python3
from setuptools import setup, find_namespace_packages
setup(
name="TWCManager",
version="1.3.2",
package_dir={"": "lib"},
packages=find_namespace_packages(where="lib"),
python_requires=">= 3.6",
include_package_data=True,
long_description="Controls the charge rate of certain versions of Tesla Wall Connector (TWC) via the built-in Load Sharing protocol.",
# Dependencies
install_requires=[
"cryptography<3.4",
"growattServer>=1.0.0",
"jinja2>=2.11.2",
"ocpp",
"paho_mqtt>=1.5.0",
"psycopg2",
"pyjwt",
"pyModbusTCP>=0.1.8",
"pymysql",
"pyserial>=3.4",
"pyyaml",
"requests>=2.23.0",
"sentry_sdk>=0.11.2",
"solaredge_modbus>=0.7.0",
"sysv_ipc",
"termcolor>=1.1.0",
"websockets<=9.1; python_version == '3.6'",
"websockets>=9.1; python_version >= '3.7'",
],
# Package Metadata
author="Nathan Gardiner",
author_email="[email protected]",
description="Package to manage Tesla Wall Connector installations",
keywords="tesla wall connector charger",
url="https://github.com/ngardiner/twcmanager",
)