-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 2.04 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (64 loc) · 2.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "benchstone"
version = "0.3.1"
description = "Trustworthy benchmark gating for code-optimization loops: append-only results, harness-owned reference artifacts, statistical PROMOTE/REJECT verdicts."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
authors = [{ name = "Alan McIntyre", email = "alan@codereclaimers.com" }]
keywords = [
"benchmark",
"regression-detection",
"statistical-gating",
"ai-agents",
"autoloop",
"performance-testing",
"reproducibility",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: System :: Benchmark",
]
dependencies = [
"click>=8.1",
]
[project.urls]
Homepage = "https://github.com/CodeReclaimers/benchstone"
Repository = "https://github.com/CodeReclaimers/benchstone"
Issues = "https://github.com/CodeReclaimers/benchstone/issues"
[project.optional-dependencies]
dev = ["pytest>=7.4", "build>=1.2"]
[project.scripts]
bench = "benchstone.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["benchstone"]
# Exclude local-only working artifacts from the published sdist. These files
# live in the project root for the maintainer's use (IDE config, adversarial-
# review prompts and transcripts, the RESEARCH.md driving that review) but
# aren't part of the package and shouldn't ship to PyPI consumers.
[tool.hatch.build.targets.sdist]
exclude = [
".idea/",
"RESEARCH.md",
"adversarial-loop/",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
filterwarnings = [
"error::UserWarning:benchstone.*",
]