-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·28 lines (26 loc) · 974 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
24
25
26
27
28
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="wiserHeatAPIv2", # Replace with your own username
version="0.0.42",
author="Mark Parker",
author_email="msparker@sky.com",
description="An API for controlling the Drayton Wiser Heating system",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/msp1974/wiserheatapiv2",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=["ruamel.yaml==0.16.12", "zeroconf", "requests"],
python_requires='>=3.9',
entry_points = {
'console_scripts': ['wiser = wiserHeatAPIv2.cli:main'],
}
)