this repo has no description
1[project]
2name = "alt-text"
3version = "0.1.0"
4description = "generate alt text for images using AI"
5authors = [
6 { name = "zzstoatzz", email = "thrast36@gmail.com" }
7]
8requires-python = ">=3.13"
9dependencies = [
10 "fastapi",
11 "uvicorn",
12 "python-multipart",
13 "logfire[fastapi]>=4.16.0",
14 "slowapi>=0.1.9",
15 "pydantic-ai>=1.37.0",
16]
17
18[project.scripts]
19alt-text = "alt_text.server:main"
20
21[build-system]
22requires = ["hatchling"]
23build-backend = "hatchling.build"
24
25[tool.hatch.build.targets.wheel]
26packages = ["src/alt_text"]
27
28[tool.ruff]
29target-version = "py313"
30
31[tool.ruff.lint]
32extend-select = ["I", "UP"]
33
34[dependency-groups]
35dev = [
36 "ipython>=9.8.0",
37]