[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "immich-watcher-server" version = "0.1.0" description = "Standalone Immich album change notification server" requires-python = ">=3.12" dependencies = [ "immich-watcher-core==0.1.0", "fastapi>=0.115", "uvicorn[standard]>=0.32", "sqlmodel>=0.0.22", "aiosqlite>=0.20", "pyjwt>=2.9", "bcrypt>=4.2", "apscheduler>=3.10,<4", "jinja2>=3.1", "aiohttp>=3.9", "anthropic>=0.42", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-asyncio>=0.23", "httpx>=0.27", ] [project.scripts] immich-watcher = "immich_watcher_server.main:run" [tool.hatch.build.targets.wheel] packages = ["src/immich_watcher_server"]