-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
32 lines (29 loc) · 1003 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
32
# -*- coding: utf-8 -*-
import re
from setuptools import setup
from zhong_hong_hvac.version import __version__
setup(
name="zhong_hong_hvac",
version=__version__,
description="Python library for interfacing with ZhongHong HVAC controller",
long_description="Python library for interfacing with ZhongHong HVAC controller",
url="https://github.com/crhan/ZhongHongHVAC",
author="Ruohan Chen",
author_email="[email protected]",
license="Apache",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
],
keywords="zhonghong hvac climate",
packages=["zhong_hong_hvac"],
python_requires=">=3.5",
install_requires=[
"attrs",
],
)