1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
from setuptools import setup
setup(
name="open_garage",
packages=["opengarage"],
install_requires=["aiohttp>=3.0.6", "async_timeout>=3.0.0"],
version="0.2.0",
description="A python3 library to communicate with Open Garage",
python_requires=">=3.5.3",
author="Daniel Hjelseth Høyer",
author_email="mail@dahoiv.net",
url="https://github.com/Danielhiversen/pyOpenGarage",
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",
],
)
|