[build-system] requires = ["setuptools>=68"] build-backend = "setuptools.build_meta" [project] name = "localpilot" version = "0.1.0" description = "A fast local model runtime and OpenAI-compatible gateway" requires-python = ">=3.11" dependencies = [ "fastapi>=0.110", "httpx>=0.27", "pydantic>=2.0", "textual>=0.50", "uvicorn[standard]>=0.29", ] [project.optional-dependencies] transformers = ["accelerate>=0.30", "safetensors>=0.4", "torch>=2.2", "transformers>=4.45"] onnx = ["onnxruntime>=1.18", "optimum[onnxruntime]>=1.20"] [project.scripts] localpilot = "localpilot.cli:main" [tool.setuptools.packages.find] where = ["."]