| [build-system] | |
| requires = ["hatchling>=1.25"] | |
| build-backend = "hatchling.build" | |
| [project] | |
| name = "benchgen-fugu-lite" | |
| version = "0.1.0" | |
| description = "A small, trainable, Fugu-inspired LLM router with SFT, contextual-bandit RL, and Sep-CMA-ES." | |
| readme = "README.md" | |
| requires-python = ">=3.10,<3.14" | |
| license = { text = "MIT" } | |
| dependencies = [ | |
| "accelerate>=1.2,<2", | |
| "cmaes>=0.11,<1", | |
| "fastapi>=0.115,<1", | |
| "numpy>=1.26,<3", | |
| "openai>=1.68,<3", | |
| "pydantic>=2.9,<3", | |
| "python-dotenv>=1.0,<2", | |
| "pyyaml>=6.0,<7", | |
| "rich>=13.9,<15", | |
| "safetensors>=0.4,<1", | |
| "torch>=2.3,<3", | |
| "transformers>=4.51,<5", | |
| "typer>=0.15,<1", | |
| "uvicorn[standard]>=0.34,<1", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=8.3,<9", | |
| "pytest-asyncio>=0.25,<1", | |
| "ruff>=0.9,<1", | |
| ] | |
| [project.scripts] | |
| fugu-lite = "fugu_lite.cli:app" | |
| [tool.hatch.build.targets.wheel] | |
| packages = ["src/fugu_lite"] | |
| [tool.pytest.ini_options] | |
| testpaths = ["tests"] | |
| asyncio_mode = "auto" | |
| [tool.ruff] | |
| line-length = 100 | |
| target-version = "py310" | |