-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (95 loc) · 2.81 KB
/
Copy pathpyproject.toml
File metadata and controls
109 lines (95 loc) · 2.81 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
[build-system]
requires = ["setuptools>=77.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rewardharness"
description = "COLM 2026 self-evolving agentic reward framework for image-editing evaluation."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "The RewardHarness Authors" },
]
keywords = [
"reward-model",
"image-editing",
"preference-learning",
"agentic",
"vlm",
"rlhf",
"colm",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dynamic = ["dependencies", "version"]
[project.scripts]
rewardharness = "rewardharness.cli:main"
[project.urls]
Homepage = "https://rewardharness.com"
Documentation = "https://github.com/TIGER-AI-Lab/RewardHarness#readme"
Repository = "https://github.com/TIGER-AI-Lab/RewardHarness"
Changelog = "https://github.com/TIGER-AI-Lab/RewardHarness/blob/main/CHANGELOG.md"
Issues = "https://github.com/TIGER-AI-Lab/RewardHarness/issues"
Paper = "https://arxiv.org/abs/2605.08703"
Conference = "https://colmweb.org/"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = { attr = "rewardharness._version.__version__" }
[tool.setuptools.packages.find]
include = ["rewardharness*"]
exclude = ["tests*", "vanilla*", "examples*", "scripts*"]
[tool.setuptools.package-data]
rewardharness = [
"py.typed",
"resources/library/**/*.json",
"resources/library/**/*.md",
"resources/score_guidelines/*.md",
]
[tool.pytest.ini_options]
addopts = "--strict-config --strict-markers"
testpaths = ["tests"]
filterwarnings = [
"error",
"ignore:.*is deprecated; import from rewardharness instead:DeprecationWarning",
]
[tool.coverage.run]
branch = true
source = ["rewardharness"]
omit = [
"rewardharness/benchmark.py",
"rewardharness/cli.py",
"rewardharness/diagnostics.py",
]
[tool.coverage.report]
fail_under = 80
show_missing = true
skip_covered = true
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
exclude = "^vanilla/"
[[tool.mypy.overrides]]
module = ["datasets.*", "google.*", "openai.*", "PIL.*", "yaml.*"]
ignore_missing_imports = true
# Release review: RewardHarness v0.4.1 (2026-08-26).