| [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 = ["."] | |