-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 853 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "family-photos-app"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi",
"uvicorn[standard]",
"chromadb",
"openai",
"Pillow",
"pillow-heif",
"exifread",
"python-dotenv",
"pydantic>=2",
"reverse_geocoder==1.5.1",
"sqlalchemy>=2,<3",
"psycopg[binary]>=3.2",
"pgvector>=0.3",
"alembic>=1.13",
"boto3>=1.34",
"pyjwt[crypto]>=2.9",
]
[project.scripts]
photos-index = "app.indexer.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.pytest.ini_options]
markers = [
"requires_postgres: needs TEST_DATABASE_URL pointing at a Postgres+pgvector instance",
]
[dependency-groups]
dev = [
"pytest",
"pytest-asyncio",
"pytest-docker>=3.2",
"httpx",
]