forked from corbinbs/solarshed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (52 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"""
SolarShed
---------
A Python library to help monitor solar charge controllers typically used in
off the grid applications.
SolarShed is distributed under the MIT License.
"""
from setuptools import setup
setup(
name="solarshed",
version="0.1",
license="MIT",
author="HUB-OLOGY",
author_email="[email protected]",
url="https://hub-ology.org",
download_url = 'https://github.com/corbinbs/solarshed/tarball/0.1',
description="SolarShed",
long_description=__doc__,
packages=["solarshed", "solarshed.controllers"],
scripts=[],
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=[
"prometheus_client==0.1.0",
"pyserial==3.4",
"MinimalModbus==0.7"
],
tests_require=[
"nose",
"tox"
],
test_suite = 'nose.collector',
keywords = ['solar', 'energy', 'charge', 'controller'],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Communications",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging",
"Topic :: Utilities"
]
)