-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 930 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (40 loc) · 930 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
46
47
[project]
name = "immich-classify"
version = "0.1.0"
description = "A CLI tool to classify Immich photos using Vision Language Models"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27",
"aiosqlite>=0.20",
"tabulate>=0.9",
"loguru>=0.7",
"python-dotenv>=1.0",
"jinja2>=3.1",
"fastapi>=0.110",
"uvicorn>=0.27",
"tqdm>=4.66",
]
[project.scripts]
immich-classify = "immich_classify.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/immich_classify"]
[[tool.uv.index]]
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "strict"
venvPath = "."
venv = ".venv"
[dependency-groups]
dev = [
"pyright>=1.1.408",
"pytest>=8.0",
"pytest-asyncio>=0.24",
]