-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (82 loc) · 2.19 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (82 loc) · 2.19 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "algitex"
version = "0.1.65"
description = "Progressive algorithmization toolchain — from LLM to deterministic code, from proxy to tickets"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [{name = "Tom Sapletta", email = "tom@sapletta.com"}]
keywords = [
"llm", "devtools", "proxy", "tickets", "progressive-algorithmization",
"mcp", "propact", "code-analysis", "automation", "workflow",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"pyyaml>=6.0",
"httpx>=0.27",
"rich>=13.0",
"clickmd>=1.0",
"pydantic>=2.0",
"tabulate>=0.9",
"goal>=2.1.0",
"costs>=0.1.20",
"pfix>=0.1.60",
"subactor-subllm @ git+https://github.com/subactor/subllm.git@505d89f505e90c7b40d98cafdc9104cc61072460",
]
[project.optional-dependencies]
all = ["proxym", "planfile", "llx", "vallm", "code2llm", "redup"]
proxy = ["proxym"]
tickets = ["planfile"]
analysis = ["code2llm", "vallm", "redup"]
routing = ["llx"]
dev = ["pytest", "ruff", "mypy",
"goal>=2.1.0",
"costs>=0.1.20",
"pfix>=0.1.60",
]
[project.scripts]
algitex = "algitex.cli:app"
[project.urls]
Homepage = "https://github.com/semcod/algitex"
Repository = "https://github.com/semcod/algitex"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pfix]
model = "openrouter/deep/deep-v4-pro"
auto_apply = true
auto_install_deps = true
auto_restart = true
max_retries = 3
create_backups = 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/deep/deep-v4-pro"
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.ruff]
exclude = [
"examples",
"docker",
"tests",
".venv",
"venv",
]