[build-system] requires = ["setuptools>=42", "wheel"] build-backend = "setuptools.build_meta" [project] name = "llm-connect" version = "0.1.0" description = "Pluggable LLM adapters for OpenRouter, Gemini, OpenAI and Claude Code CLI" requires-python = ">=3.10" dependencies = [ "toml", ] [project.scripts] llm-connect = "llm_connect.cli:main" [project.optional-dependencies] dev = [ "pytest>=7.0", "ruff>=0.4", "mypy>=1.10", ] # serve mode uses stdlib http.server — no additional runtime dependency required server = [] [tool.setuptools.packages.find] where = ["."] include = ["llm_connect*"] [dependency-groups] dev = [ "pytest>=9.0.2", "ruff>=0.4", "mypy>=1.10", ] [tool.pytest.ini_options] testpaths = ["tests"] addopts = "-v" [tool.ruff] target-version = "py310" line-length = 100 [tool.ruff.lint] select = ["E", "F", "W", "I", "UP"] ignore = ["E501"] [tool.mypy] python_version = "3.10" strict = false ignore_missing_imports = true disallow_untyped_defs = true warn_return_any = true warn_unused_ignores = true