-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (30 loc) · 920 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
from setuptools import setup, find_packages
setup(
name='ib.victron',
version='0.1',
description="Python library for communicating with Victron inverters",
long_description=open("README.md").read(),
classifiers=[
"Programming Language :: Python",
],
keywords='python victron mk2',
author='Izak Burger',
author_email='[email protected]',
url='https://github.com/izak/ib.victron',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['ib'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'pyserial',
],
entry_points="""
[console_scripts]
monitor = ib.victron.scripts.monitor:main
getstate = ib.victron.scripts.getstate:main
getlimit = ib.victron.scripts.getlimit:main
setlimit = ib.victron.scripts.setlimit:main
""",
)