File size: 789 Bytes
11c11f8 | 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 = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "chimera51-cpu"
version = "5.2.0"
description = "CPU-first Chimera 5.1 causal LM implementation"
requires-python = ">=3.10"
dependencies = ["torch"]
[project.scripts]
chimera-train = "chimera.cli:train_main"
chimera-train-fast = "chimera.cli:train_fast_main"
chimera-train-hyper = "chimera.cli:train_hyper_main"
chimera-infer = "chimera.cli:infer_main"
chimera-import-gguf = "chimera.cli:import_gguf_main"
[tool.setuptools]
packages = ["chimera", "chimera.training"]
py-modules = ["train", "train_fast", "train_hyper", "inference", "gguf_import", "chimera_turbo"]
[tool.setuptools.data-files]
"." = ["config.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
|