-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 737 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 737 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
setup(
name="pymelcloud",
version="2.0.0",
description="Python MELCloud interface",
author="Vilppu Vuorinen",
author_email="vilppu.jotain@gmail.com",
license="MIT",
url="https://github.com/vilppuvuorinen/pymelcloud",
python_requires=">3.5",
packages=["pymelcloud"],
keywords=["homeautomation", "melcloud"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Home Automation",
],
install_requires=["aiohttp"],
scripts=[],
)