File size: 690 Bytes
f039f41 335e669 f039f41 | 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 | [build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "shiftedx-bench"
version = "0.5.1"
description = "Reproducible quality, long-context, tool, vision, and MTPLX qualification for local language models"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
authors = [{name = "Shiftedx"}]
dependencies = []
[project.optional-dependencies]
tokenizers = ["transformers>=5.0"]
vision = ["Pillow>=11.0"]
test = ["pytest>=8.0"]
[project.scripts]
shiftedx-bench = "shiftedx_bench.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/shiftedx_bench"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
|