-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (42 loc) · 1.02 KB
/
pyproject.toml
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
48
49
50
51
[tool.poetry]
name = "iscc-metagen"
version = "0.1.0"
description = "A library, command-line tool, and web-app for generating structured metadata for digital media assets."
authors = ["Titusz Pan <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
instructor = "*"
litellm = "^1.46"
python-dotenv = "^1.0"
pymupdf4llm = "^0.0.16"
loguru = "^0.7"
openai = "^1.46"
pydantic-extra-types = "^2.9"
pycountry = "^24.6"
ollama = "^0.3"
pydantic-settings = "^2.5"
cyclopts = "^2.9"
streamlit = { version = "^1.39", optional = true }
Pillow = "^10.4"
httpx-cache = "^0.13"
jinja2 = "^3.1"
[tool.poetry.extras]
gui = ["streamlit"]
[tool.poetry.scripts]
metagen = 'iscc_metagen.cli:app'
[tool.poetry.group.dev.dependencies]
black = "*"
ruff = "*"
mdformat = "*"
[tool.black]
line-length = 100
preview = true
enable-unstable-feature = ["string_processing"]
[tool.ruff]
line-length = 100
[tool.ruff.format]
line-ending = "lf"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"