[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "orrery-search" version = "2026.03.01" description = "Semantic search and chat API for the pg_orrery documentation" license = "MIT" requires-python = ">=3.12" authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}] dependencies = [ "fastapi>=0.115.0", "uvicorn[standard]>=0.32.0", "sqlalchemy[asyncio]>=2.0.36", "asyncpg>=0.30.0", "pgvector>=0.4.2", "pgai[sqlalchemy]>=0.12.0", "tiktoken>=0.7.0", "alembic>=1.14.0", "pydantic-settings>=2.6.0", "openai>=1.60.0", "anthropic>=0.40.0", "pyyaml>=6.0", "fastmcp>=3.0.0", "httpx>=0.28.0", ] [project.scripts] orrery-search = "orrery_search.main:run" [tool.ruff] target-version = "py312" src = ["src"] [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM"] ignore = ["B008"] [tool.hatch.build.targets.wheel] packages = ["src/orrery_search"] [tool.pytest.ini_options] asyncio_mode = "auto" [dependency-groups] dev = [ "pytest>=9.0.2", "pytest-asyncio>=1.3.0", ]