-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (78 loc) · 2.33 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (78 loc) · 2.33 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "rigorloop"
dynamic = ["version"]
description = "Statistically-sound agentic loop-engineering framework: dev/val/test-split loops that produce code artifacts without overfitting."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Roni Kobrosly", email = "roni.kobrosly@gmail.com" }]
requires-python = ">=3.12"
dependencies = [] # stdlib-only, by design
keywords = ["agents", "llm", "evaluation", "claude", "data-science"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Code Generators",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/ronikobrosly/RigorLoop"
Issues = "https://github.com/ronikobrosly/RigorLoop/issues"
Changelog = "https://github.com/ronikobrosly/RigorLoop/blob/main/CHANGELOG.md"
[project.scripts]
rigorloop = "rigorloop.shell.cli:main"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/rigorloop/_version.py"
[dependency-groups]
dev = [
"pytest>=8",
"pytest-cov>=5",
"hypothesis>=6",
"mypy>=1.16",
"ruff>=0.8",
"pre-commit>=4",
]
# ---- tool configuration ----
[tool.ruff]
target-version = "py312"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "UP", "B", "C4", "SIM", "RUF", "T20"]
[tool.ruff.lint.per-file-ignores]
# Printing is a shell effect: forbidden in the core, expected in the shell.
"src/rigorloop/shell/**" = ["T20"]
[tool.mypy]
strict = true
warn_unreachable = true
enable_error_code = ["exhaustive-match", "ignore-without-code"]
files = ["src", "tests"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"unit: fast pure-core tests",
"integration: shell tests against stubs",
"e2e: full-run tests with fake agents",
]
addopts = "--strict-markers"
[tool.coverage.run]
source = ["rigorloop"]
branch = true
[tool.coverage.report]
fail_under = 80
show_missing = true
exclude_also = [
"if TYPE_CHECKING:",
"assert_never\\(",
]