-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
23 lines (22 loc) · 779 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
from setuptools import setup
setup(
name="adax",
packages=["adax"],
install_requires=["aiohttp>=3.0.6", "async_timeout>=3.0.0"],
version="0.4.0",
description="A python3 library to communicate with Adax",
long_description="A python3 library to communicate with Adax",
python_requires=">=3.5.3",
author="Daniel Hjelseth Hoyer",
author_email="[email protected]",
url="https://github.com/Danielhiversen/pyAdax",
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",
],
)