-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (31 loc) · 896 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "komfovent-api"
version = "0.0.7"
license = {text = "Apache-2.0"}
description = "Implementing Komfovent C6 API in python"
readme = {file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
authors = [
{name = "Aleksandr Tsernoh", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Home Automation",
"Operating System :: OS Independent"
]
dependencies = [
"aiohttp",
"lxml"
]
[tool.setuptools]
packages = ["komfovent_api"]
[project.urls]
Repository = "https://github.com/ProstoSanja/komfovent-api-python"