forked from jnimmo/pyIntesisHome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 683 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python3
from setuptools import setup
setup(
name="pyintesishome",
version="1.8.1",
description="A python3 library for running asynchronus communications with IntesisHome Smart AC Controllers",
url="https://github.com/jnimmo/pyIntesisHome",
author="James Nimmo",
author_email="james@nimmo.net.nz",
license="MIT",
install_requires=["aiohttp>=3.7.4,<4"],
packages=["pyintesishome"],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
],
)