-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (55 loc) · 1.48 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
[project]
name = "balatrobench"
version = "1.5.0"
description = "Benchmark analysis and visualization for BalatroLLM"
readme = "README.md"
authors = [{ name = "S1M0N38", email = "bertolottosimone@gmail.com" }]
requires-python = ">=3.13"
dependencies = ["httpx>=0.28.1", "tqdm>=4.67.1"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
balatrobench = "balatrobench.cli:main"
[project.urls]
Homepage = "https://balatrobench.com/"
Repository = "https://github.com/coder/balatrobench"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
lint.extend-select = ["I"]
lint.task-tags = ["FIX", "TODO", "HACK", "WARN", "PERF", "NOTE", "TEST"]
[tool.pytest.ini_options]
testpaths = ["tests/balatrobench"]
addopts = "--tb=short"
markers = [
"unit: Unit tests (fast, isolated)",
"integration: Integration tests (may use fixtures)",
]
[dependency-groups]
test = ["pytest>=9.0.2", "pytest-cov>=6.0.0"]
dev = [
"commitizen>=4.11.0",
"jsbeautifier>=1.15.4",
"mdformat>=0.7.22,<0.8.0",
"mdformat-footnote>=0.1.2",
"mdformat-frontmatter>=2.0.8",
"mdformat-gfm>=1.0.0",
"mdformat-gfm-alerts>=2.0.0",
"mdformat-mkdocs>=5.1.1",
"mdformat-simple-breaks>=0.0.1",
"ruff>=0.14.10",
"ty>=0.0.9",
]
[tool.coverage.run]
source = ["src/balatrobench"]
branch = true
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"raise NotImplementedError",
]