forked from issacg/pycoolmaster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 889 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 889 Bytes
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
#!/usr/bin/env python3
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
setup(
name="pycoolmaster",
version="0.2.1",
description="Lightweight Python API for older (RS232-only) CoolMaster HVAC bridges",
author="Issac Goldstand",
author_email="margol@beamartyr.net",
url="http://github.com/issacg/pycoolmaster",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"pyserial"
],
zip_safe=True,
keywords="hvac homeautomation",
)