forked from gluap/pyess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (29 loc) · 1.04 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
# coding=utf-8
from setuptools import setup
from pyess import __version__ as version
setup(name='pyess',
version=version,
description='Library for communicating with LG ESS solar power converters/batteries',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Operating System :: OS Independent",
],
url='https://github.com/gluap/pyess',
author='Paul Görgen',
author_email='[email protected]',
license='MIT',
packages=['pyess'],
install_requires=[
'zeroconf', 'requests', 'graphyte', 'aiohttp', 'asyncio-mqtt>=0.4.0', 'ConfigArgParse'
],
zip_safe=False,
include_package_data=False,
tests_require=[
'tox', 'pytest'
],
entry_points={'console_scripts': ['esscli=pyess.cli:main', 'essmqtt=pyess.essmqtt:main']},
long_description=open('README.rst', 'r').read()
)