-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 693 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pypalazzetti",
version="0.1.20",
author="Vincent Roukine",
author_email="vincent.roukine@gmail.com",
description="A Python library to access and control a Palazzetti stove through a Palazzetti Connection Box",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/dotvav/py-palazzetti-api",
packages=setuptools.find_packages(exclude=("tests", "tests.*")),
install_requires=["aiohttp>=3.10.3"],
python_requires=">=3.10",
include_package_data=True,
)