-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
41 lines (36 loc) · 1.12 KB
/
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
35
36
37
38
39
40
41
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "python-systemair-saveconnect"
description = "A python interface for the SaveConnect API"
requires-python = ">=3.7"
keywords = ["systemair", "saveconnect", "home-automation"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"beautifulsoup4",
"httpx",
"pydantic",
"importlib-metadata"
]
dynamic = ["version", "readme"]
[tool.distutils.bdist_wheel]
universal = true
[tool.setuptools_scm]
write_to = "systemair/VERSION.py"
[tool.setuptools.dynamic]
version = {attr = "systemair.VERSION.__version__"}
readme = {file = ["README.rst"]}
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["systemair*"] # package names should match these glob patterns (["*"] by default)
exclude = [
"node_modules*",
"scripts*",
"tests*",
"venv*"
] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)