-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (36 loc) · 842 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
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "render_engine_aggregators"
dynamic = ["version"]
description = "aggregate multiple collections"
readme = "README.md"
dependencies = [
"render-engine>=2023.6.1"
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
"black",
]
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
"*" = ["*.html", "*.txt", "*.xml", "*.md"]
[tool.semantic_release]
version_toml = "pyproject.toml:project.version"
branch = "main"
[tool.ruff]
select = ["E", "F", "I", "UP"]
target-version = "py311"
line-length = 120
src = ["src"]
[tool.black]
target-version = ["py311"]
line-length = 120
[tool.pytest]
project_paths = ["src"]