-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "codetracer"
version = "0.2.0"
description = "CodeTracer: self-evolving agent trajectory diagnosis & replay system"
requires-python = ">=3.10"
dependencies = [
"pyyaml",
"jinja2",
"pydantic>=2.0",
"tenacity",
"rich",
"typer",
"python-dotenv",
"platformdirs",
"openai",
"requests",
"datasets",
"huggingface_hub",
"inquirer",
"readchar",
]
[project.optional-dependencies]
docker = [
"docker",
]
dev = [
"pytest",
"ruff",
]
[project.scripts]
codetracer = "codetracer.cli:app"
codetracer-batch = "codetracer.scripts.batch_run:main"
codetracer-dev = "codetracer.scripts.codetracer_dev:main"
codetracer-analyze-source = "codetracer.scripts.analyze_agent_source:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["codetracer*"]
[tool.setuptools.package-data]
codetracer = [
"config/**/*",
"skills/seed/**/*",
"prompts/presets/**/*",
"benches/seed/**/*",
"templates/presets/**/*",
]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501", "E402", "E722"]