-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (38 loc) · 1013 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_cms"
dynamic = ["version"]
description = "Lightweight CMS for Render-Engine build with textual"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"textual",
"textual-web",
"render-engine",
]
[project.optional-dependencies]
dev = [
"ruff",
"textual-dev",
"textual[syntax]",
]
[tool.setuptools_scm]
local_scheme = "no-local-version"
# version_scheme = "python-simplified-semver"
[project.urls]
homepage = "https://github.com/kjaymiller/render_engine/"
repository = "https://github.com/kjaymiller/render_engine/"
documentation = "https://render-engine.readthedocs.io/en/latest/"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.semantic_release]
version_toml = "pyproject.toml:project.version"
branch = "main"
[too.ruff]
target-version = "py311"
line-length = 120
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]