-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
23 lines (22 loc) · 788 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="millheater",
packages=["mill"],
install_requires=["aiohttp>=3.7.4,<4", "async_timeout>=3.0.0"],
version="0.12.2",
description="A python3 library to communicate with Mill",
long_description="A python3 library to communicate with Mill",
python_requires=">=3.10",
author="Daniel Hjelseth Hoyer",
author_email="[email protected]",
url="https://github.com/Danielhiversen/pymill",
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",
],
)