[build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" [project] name = "waxwing" version = "0.1.0" description = "Local-first gardening assistant — plant registry, grow calendar, knowledge base" requires-python = ">=3.11" dependencies = [ "fastapi>=0.110", "uvicorn[standard]>=0.27", "pydantic>=2.5", "httpx>=0.27", "pyyaml>=6.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-asyncio>=0.23", "httpx>=0.27", ] [tool.setuptools.packages.find] where = ["."] include = ["app*"] [tool.pytest.ini_options] testpaths = ["tests"] markers = ["unit", "integration"]