-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.34 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 1.34 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "dinostomp"
version = "0.62.0"
description = "Build evals fast. Everything gets stomped before it gets believed."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [{name = "Alex Kwon"}]
keywords = ["evals", "llm", "benchmarks", "validation"]
dependencies = [
"jsonschema>=4.0",
"PyYAML>=6.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.0"]
# Image DECODING, and nothing else. The core stays at two dependencies: an
# image's bytes answer "is this the same file", and only "is this the same
# picture" needs pixels. S15 is the one check that does, and it skips loudly
# when this is absent rather than passing quietly.
vision = ["Pillow>=9.0"]
# Workbook STRUCTURE, and nothing else. The core reads a spreadsheet's values
# through this too, but only the X checks need the formulas, hidden rows, merged
# ranges and calculation state, and they skip loudly when this is absent rather
# than passing quietly. Every dataframe reader throws that half away silently.
xlsx = ["openpyxl>=3.1"]
[project.scripts]
dinostomp = "dinostomp.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"dinostomp.schemas" = ["*.schema.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]