forked from NabuCasa/hass-nabucasa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.26 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.26 KB
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
34
35
36
37
38
39
40
41
from setuptools import setup
VERSION = "0.1.3"
setup(
name="hass-uniocloud",
version=VERSION,
license="GPL v3",
author="UNIO Smart Home",
author_email="developers@freshminds.com.br",
url="https://www.uniosmarthome.com",
download_url="https://github.com/uniosmarthome/hass-uniocloud/tarball/{}".format(
VERSION
),
description=("Home Assistant cloud integration by UNIO Smart Home"),
long_description=(""),
classifiers=[
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Internet :: Proxy Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.8",
],
keywords=["homeassistant", "cloud", "unio"],
zip_safe=False,
platforms="any",
packages=["hass_uniocloud"],
install_requires=[
"pycognito==0.1.4",
"snitun==0.20",
"acme==1.9.0",
"cryptography>=2.8,<4.0",
"attrs>=19.3,<20.4",
"pytz>=2019.3",
"aiohttp>=3.6.1",
"atomicwrites==1.4.0",
],
)