33 lines
703 B
TOML
33 lines
703 B
TOML
[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*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
trace_model_meta = ["**/*.json", "**/*.jinja", "**/*.py"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.3",
|
|
]
|