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 29 30 31 32 33 34
|
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
LONG_DESCRIPTION = (here / "README.md").read_text(encoding="utf-8")
VERSION = "0.2.0"
# Setting up
setup(
name="pyeconet",
version=VERSION,
author="William Scanlon",
description="Interface to the unofficial EcoNet API",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
package_dir={"": "src"},
packages=find_packages(
where="src", exclude=["dist", "*.test", "*.test.*", "test.*", "test"]
),
install_requires=["aiohttp>=3.11.11, <4", "paho-mqtt>=2.1.0, <3"],
keywords=["econet", "rheem", "api"],
python_requires=">=3.8, <4",
url="https://github.com/w1ll1am23/pyeconet",
project_urls={
"Bug Reports": "https://github.com/w1ll1am23/pyeconet/issues",
"Source": "https://github.com/w1ll1am23/pyeconet",
},
classifiers=[
"License :: OSI Approved :: MIT License",
],
)
|