-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (25 loc) · 878 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
from setuptools import setup
long_description = None
with open("README.md", 'r') as fp:
long_description = fp.read()
setup(
name = 'Ambiclimate',
packages = ['ambiclimate'],
install_requires=['aiohttp>=3.0.6', 'async_timeout>=3.0.0'],
version='0.3.0',
description='A python3 library to communicate with Ambiclimate',
long_description=long_description,
python_requires='>=3.5.3',
author='Daniel Hjelseth Hoyer',
author_email='[email protected]',
url='https://github.com/Danielhiversen/pyAmbiclimate',
license="MIT",
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)