[project] name = "tolkien" version = "0.1.0" description = "Local-LLM orchestrator that scaffolds valinor app deployments from a one-line spec." readme = "README.md" requires-python = ">=3.13" dependencies = [ "httpx>=0.27", "pydantic>=2.8", "pyyaml>=6.0", "typer>=0.12", ] [project.scripts] tolkien = "tolkien.cli:app" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/tolkien"] [tool.ruff] line-length = 100 target-version = "py313" [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM"]