forked from explosivo22/rinnaicontrolr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.05 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
import io
import os
from setuptools import setup
# The text of the README file
here = os.path.abspath(os.path.dirname(__file__))
try:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
except FileNotFoundError:
long_description = DESCRIPTION
setup(
name="rinnaicontrolr",
version="0.4.0",
description="Python interface for Rinnai Control-R API",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/explosivo22/rinnaicontrolr",
author="Brad Barbour",
author_email="barbourbj@gmail.com",
license='Apache Software License',
install_requires=[ 'requests>=2.0', 'boto3>=1.17' ],
keywords=[ 'rinnai', 'home automation', 'water heater' ],
packages=[ 'rinnaicontrolr' ],
zip_safe=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)