Initial commit

This commit is contained in:
2026-04-21 15:44:47 +00:00
commit bce3fe1395
40 changed files with 1758724 additions and 0 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "ali-trace"
version = "0.1.0"
description = "Two-step trace formatting and analysis pipeline for coding-agent traces."
requires-python = ">=3.11"
dependencies = [
"jinja2",
"matplotlib",
"psutil",
"tokenizers",
"tqdm",
"transformers",
]
[project.scripts]
trace-formatter = "trace_formatter.cli:main"
trace-analyzer = "trace_analyzer.cli:main"
[tool.setuptools.packages.find]
include = ["trace_analyzer", "trace_formatter", "trace_model_meta"]
[dependency-groups]
dev = [
"pytest>=9.0.3",
]