-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 995 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (42 loc) · 995 Bytes
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
48
49
50
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "task-knowledge-cli"
version = "1.0.0"
description = "Единый CLI для install/query/workflow контуров task-centric knowledge."
readme = "README.md"
requires-python = ">=3.11"
[project.optional-dependencies]
dev = [
"mypy>=1.11",
"ruff>=0.8",
"mkdocs>=1.6",
"mkdocstrings[python]>=1.0",
"mkdocs-material>=9.7",
"griffe>=2.0",
]
[project.scripts]
task-knowledge = "task_knowledge.__main__:main"
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
target-version = "py311"
line-length = 120
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = [
"E501",
]
[tool.mypy]
python_version = "3.11"
files = ["src"]
check_untyped_defs = true
ignore_missing_imports = true
warn_unused_ignores = true
warn_redundant_casts = true
no_implicit_optional = true
strict_optional = true