Initial commit
This commit is contained in:
29
pyproject.toml
Normal file
29
pyproject.toml
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user