-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (66 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (66 loc) · 1.83 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mdflow"
version = "0.1.7"
description = "Markdown dependency analyzer — extract all dependencies, generate diagrams and charts"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["markdown", "dependencies", "diagrams", "mermaid", "analysis"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Programming Language :: Python :: 3",
]
# No required dependencies — mdflow works with stdlib only.
# Optional: graphviz for SVG output.
dependencies = ["costs>=0.1.20", "pfix>=0.1.60"]
[project.license]
text = "Apache-2.0"
[project.optional-dependencies]
graphviz = ["graphviz>=0.20"]
dev = [
"pytest>=7",
"pytest-cov",
"costs>=0.1.20",
"pfix>=0.1.60",
]
[project.scripts]
mdflow = "mdflow.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["mdflow*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.pfix]
# Self-healing Python configuration
model = "openrouter/qwen/qwen3-coder-next"
auto_apply = true
auto_install_deps = true
auto_restart = false
max_retries = 3
create_backups = false
git_auto_commit = false
[tool.pfix.runtime_todo]
enabled = true
todo_file = "TODO.md"
min_severity = "low"
deduplicate = true
[tool.costs]
# AI Cost tracking configuration
badge = true
update_readme = true
readme_path = "README.md"
default_model = "openrouter/qwen/qwen3-coder-next"
analysis_mode = "byok"
full_history = true
max_commits = 500
# Cost thresholds for badge colors (USD)
badge_color_thresholds = { low = 1.0, medium = 5.0, high = 10.0, critical = 50.0 }
[tool.uv.dependency-groups]
automation = {requires-python = ">=3.12"}
[dependency-groups]
automation = ["goal>=2.2.0"]