-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
133 lines (122 loc) · 2.9 KB
/
Copy pathpyproject.toml
File metadata and controls
133 lines (122 loc) · 2.9 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "trace2skill"
version = "0.1.0"
description = "Harness-agnostic framework for evolving agent skills from trajectories (Trace2Skill, arXiv:2603.25158)"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
authors = [{ name = "Trace2Skill Contributors" }]
keywords = [
"agents",
"llm",
"skill-evolution",
"trace2skill",
"trajectory",
"claude-code",
"langchain",
"react",
"prompt-engineering",
"agentic",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.6",
"pyyaml>=6.0",
"anyio>=4.2",
"questionary>=2.0",
"python-dotenv>=1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.4",
"pyright>=1.1.360",
"python-dotenv>=1.0",
]
anthropic = [
"anthropic>=0.37",
]
openai = [
"openai>=1.50",
]
langchain = [
"langchain>=0.3",
"langchain-core>=0.3",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
]
[project.urls]
Homepage = "https://github.com/Hert4/trace2skill"
Documentation = "https://hert4.github.io/trace2skill/"
Repository = "https://github.com/Hert4/trace2skill"
Issues = "https://github.com/Hert4/trace2skill/issues"
Changelog = "https://github.com/Hert4/trace2skill/blob/main/CHANGELOG.md"
Paper = "https://arxiv.org/abs/2603.25158"
[project.scripts]
trace2skill = "trace2skill.cli.main:run"
[tool.hatch.build.targets.wheel]
packages = ["trace2skill"]
[tool.hatch.build.targets.wheel.force-include]
# Non-.py assets that ship with the wheel.
"trace2skill/py.typed" = "trace2skill/py.typed"
[tool.hatch.build]
# Prompts are packaged; rubrics ship separately in the sdist for reference.
include = [
"trace2skill/**/*.py",
"trace2skill/**/*.md",
"trace2skill/py.typed",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
exclude = [
"tests/",
"benchmarks/",
"_external/",
"examples/",
"docs/",
"site/",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = [
"E", "F", "W",
"I",
"UP",
"B",
"SIM",
"RUF",
]
ignore = [
"E501",
]
[tool.pyright]
include = ["trace2skill", "tests"]
pythonVersion = "3.11"
typeCheckingMode = "strict"
reportMissingTypeStubs = false
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
asyncio_mode = "auto"