forked from Frankkkkk/python-vedirect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 669 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name="vedirect",
version="1.1.0",
author="Frank Villaro-Dixon",
author_email="frank@villaro-dixon.eu",
description=("Interfaces with Victron VE.Direct devices"),
license="MIT",
keywords="victron vedirect ve.direct ve direct mppt",
url="http://github.com/Frankkkkk/python-vedirect",
py_modules=['vedirect'],
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
install_requires=['pyserial'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
)