-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (36 loc) · 943 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
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "render-engine-<INSTALLABLE_NAME>"
dynamic = ["version"]
description = "<DESCRIPTION>"
readme = "README.md"
dependencies = [
"jinja2",
"render-engine",
# Include any other dependencies here
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"ruff",
]
[tool.setuptools_scm]
local_scheme = "no-local-version"
[project.urls]
homepage = "https://github.com/<AUTHOR>/<PROJECT_NAME>"
repository = "https://github.com/<AUTHOR>/<PROJECT_NAME>"
documentation = "https://github.io/<AUTHOR>/<PROJECT_NAME>"
[tool.semantic_release]
version_toml = "pyproject.toml:project.version"
branch = "main"
[tool.ruff]
select = ["E", "F", "I", "UP"]
target-version = "py311"
line-length = 120
ignore-init-module-imports = true
[tool.black]
target-version = ["py311"]
line-length = 120