[project] name = "alt-text" version = "0.1.0" description = "generate alt text for images using AI" authors = [ { name = "zzstoatzz", email = "thrast36@gmail.com" } ] requires-python = ">=3.13" dependencies = [ "fastapi", "uvicorn", "python-multipart", "logfire[fastapi]>=4.16.0", "slowapi>=0.1.9", "pydantic-ai>=1.37.0", ] [project.scripts] alt-text = "alt_text.server:main" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/alt_text"] [tool.ruff] target-version = "py313" [tool.ruff.lint] extend-select = ["I", "UP"] [dependency-groups] dev = [ "ipython>=9.8.0", ]