Spaces:
Running
Running
File size: 1,100 Bytes
a969e99 a23e42b a969e99 e60e7e0 | 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 | [build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "eval-card-registry"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.111.0",
"uvicorn[standard]>=0.29.0",
"typer>=0.12.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.2.0",
"pandas>=2.2.0",
"pyarrow>=16.0.0",
"huggingface-hub>=0.23.0",
"datasets>=2.19.0",
"pyyaml>=6.0",
"eval-entity-resolver",
"duckdb>=1.5.2",
]
[project.scripts]
eval-card-registry = "eval_card_registry.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/eval_card_registry"]
[tool.uv.workspace]
members = ["packages/eval-entity-resolver"]
[tool.uv.sources]
eval-entity-resolver = { workspace = true }
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"httpx>=0.27.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests", "packages/eval-entity-resolver/tests"]
markers = [
"slow: heavy gate sweeps over the full 6,720 EEE ids / 4,074 oracle ids (still CI-runnable; deselect with -m 'not slow')",
]
|