-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
145 lines (130 loc) · 3.39 KB
/
Copy pathpyproject.toml
File metadata and controls
145 lines (130 loc) · 3.39 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
134
135
136
137
138
139
140
141
142
143
144
145
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "clawloop"
version = "0.1.0"
description = "AI agents that learn from experience — observe, learn, improve"
requires-python = ">=3.12"
license = {file = "LICENSE"}
authors = [{name = "Aganthos Inc."}]
readme = "README.md"
keywords = ["ai", "agents", "learning", "llm", "reinforcement-learning"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"litellm>=1.0,<2.0,!=1.82.7,!=1.82.8",
"pydantic>=2.0",
"python-dotenv>=1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-timeout>=2.0",
"starlette>=0.27",
"uvicorn>=0.20",
"httpx>=0.24",
"ruff>=0.4,<0.5",
"pre-commit>=3.6",
]
car = [
"starlette>=0.27",
"uvicorn>=0.20",
"httpx>=0.24",
]
wandb = [
"wandb>=0.26",
]
otel = [
"opentelemetry-api>=1.20",
"opentelemetry-sdk>=1.20",
"opentelemetry-exporter-otlp-proto-http>=1.20",
"openinference-semantic-conventions>=0.1.6",
]
server = [
"starlette>=0.27",
"uvicorn>=0.20",
"httpx>=0.24",
]
taubench = [
"tau2>=1.0.0",
]
games = [
"tinker>=0.18,<0.20",
"tinker-cookbook>=0.1.0",
"open_spiel>=1.5",
"numpy>=1.26",
"orjson>=3.9", # transitive for tinker 0.18.x until Tinker declares it
# game_arena has no PyPI release; pinned to main SHA captured 2026-04-17.
"game_arena @ git+https://github.com/google-deepmind/game_arena@6ddcc7dac06321472f2f22fabdeceab97eebeb73",
]
docs = [
"mkdocs>=1.5",
"mkdocs-material>=9.0",
"pymdown-extensions>=10.0",
]
release = [
"build>=1.0",
"twine>=5.0",
]
[project.scripts]
clawloop = "clawloop.cli:main"
clawloop-server = "clawloop.server:main"
[project.urls]
Homepage = "https://github.com/aganthos/clawloop"
Repository = "https://github.com/aganthos/clawloop"
Issues = "https://github.com/aganthos/clawloop/issues"
Documentation = "https://aganthos.github.io/clawloop"
Website = "https://aganthos.com"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
include = [
"clawloop/",
"tests/",
"examples/",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"CHANGELOG.md",
]
exclude = [
"benchmarks/",
"scripts/",
]
[tool.hatch.build.targets.wheel]
packages = ["clawloop"]
[tool.uv]
python-preference = "only-managed"
constraint-dependencies = [
"litellm!=1.82.7,!=1.82.8",
]
[tool.uv.sources]
tau2 = { git = "https://github.com/sierra-research/tau2-bench.git", tag = "v1.0.0" }
[tool.ruff]
line-length = 99
target-version = "py312"
extend-exclude = ["benchmarks", "skyrl", "scripts"]
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.lint.per-file-ignores]
# Tests often contain long mock prompts/messages and `pytest.importorskip`
# patterns that legitimately place imports after module-level statements.
"tests/**" = ["E501", "E402"]
# Example scripts frequently embed long example prompts and sample output.
"examples/**" = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"e2e: end-to-end tests requiring Docker, network, and API keys",
]