-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (38 loc) · 1.03 KB
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
[project]
name = "solidforge"
version = "0"
description = "Solid Forge — loop-engineering skills for AI coding agents (parallel-development + blueprint-crafting). Not published as a package; this file marks the workspace as a Python project for gate detection + dev-dep management."
requires-python = ">=3.11"
[project.optional-dependencies]
dev = [
"ruff",
"import-linter",
"pylint",
"pyright",
"pip-audit",
"pytest-json-report",
"pytest-cov",
"jsonschema",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
[tool.ruff.format]
quote-style = "double"
[tool.importlinter]
root_packages = []
[tool.pytest.ini_options]
testpaths = ["skills/parallel-development/infra/test", "skills/blueprint-crafting/infra/test"]
[dependency-groups]
dev = [
"import-linter>=2.13",
"jsonschema>=4.18",
"pip-audit>=2.10.1",
"pylint>=4.0.6",
"pyright>=1.1.411",
"pytest-cov>=7.1.0",
"pytest-json-report>=1.5.0",
"ruff>=0.15.20",
]