-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (110 loc) · 2.59 KB
/
Copy pathpyproject.toml
File metadata and controls
119 lines (110 loc) · 2.59 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
[project]
name = "agentir"
version = "0.1.0"
description = "A compiler infrastructure for agentic trajectories."
readme = "README.md"
requires-python = ">=3.11,<3.14"
license = { text = "Apache-2.0" }
authors = [{ name = "agentir contributors" }]
keywords = [
"agent",
"trajectory",
"compiler",
"IR",
"intermediate-representation",
"LLM",
"training-data",
"dataset",
"agentic",
"trace",
"transform",
"pass",
"backend",
"SFT",
"RLHF",
"DPO",
"observability",
"OpenHands",
"Claude-Code",
"ShareGPT",
"agent-framework",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software 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 :: Compilers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls = { Homepage = "https://github.com/ravenSanstete/agentir", Documentation = "https://github.com/ravenSanstete/agentir#readme", Repository = "https://github.com/ravenSanstete/agentir.git", Issues = "https://github.com/ravenSanstete/agentir/issues" }
dependencies = [
"pydantic>=2.8",
"typer>=0.12",
"rich>=13.7",
"orjson>=3.10",
"jsonlines>=4.0",
"datasets>=2.20",
"huggingface-hub>=0.24",
"pyarrow>=16.0",
"pandas>=2.2",
"typing-extensions>=4.12",
"ruamel.yaml>=0.18",
"defusedxml>=0.7",
"unidiff>=0.7",
]
[project.optional-dependencies]
tui = [
"textual>=0.70",
]
dev = [
"pytest>=8.2",
"pytest-cov>=5.0",
"hypothesis>=6.100",
"mypy>=1.10",
"ruff>=0.5",
"pre-commit>=3.7",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
]
perf = [
"duckdb>=1.0",
"ijson>=3.3",
]
otel = [
"opentelemetry-api>=1.25",
"opentelemetry-sdk>=1.25",
]
[project.scripts]
agentir = "agentir.cli.main:app"
agentir-as = "agentir.cli.as_cmd:app"
agentir-opt = "agentir.cli.opt_cmd:app"
agentir-llc = "agentir.cli.llc_cmd:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "SIM", "PTH"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_unused_configs = true
plugins = ["pydantic.mypy"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--strict-markers --strict-config"
[dependency-groups]
dev = [
"pytest>=9.0.3",
]