-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (39 loc) · 958 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
47
[project]
name = "DigOutBox"
version = "0.2"
description = "DigOutBox rye configuration."
authors = [
{ name = "Reto Trappitsch", email = "[email protected]" }
]
dependencies = [
"mkdocs>=1.5.3",
"mkdocs-material>=9.5.7",
"mkdocs-mermaid2-plugin>=1.1.1",
]
readme = "README.md"
requires-python = ">= 3.12"
license = { text = "MIT" }
[project.scripts]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
select = ["B", "C", "D", "E", "F", "I", "S", "W"]
ignore = ["D203", "D213"]
[tool.ruff.lint.per-file-ignores]
"*/tests/*" = ["S101"]
[tool.rye]
managed = true
dev-dependencies = [
"mkdocs-mermaid2-plugin>=1.1.1",
"ruff>=0.1.14",
]
[tool.rye.scripts]
docs = "mkdocs"
test = "pytest controller"
[tool.rye.workspace]
members = ["controller", "controller_gui"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/digoutbox"]