-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (49 loc) · 1.35 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
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "mextractor"
version = "6.0.2"
description = "mextractor can extract media metadata to YAML and read them"
readme = "README.md"
repository = "https://github.com/caniko/media-metadata-extractor"
homepage = "https://pypi.org/project/mextractor/"
authors = ["Can H. Tartanoglu <[email protected]>"]
license = "BSD-4"
keywords = ["metadata", "video", "image", "bigdata"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.scripts]
mextractor = "mextractor.cli:cli_app"
[tool.poetry.dependencies]
python = ">=3.10, <3.14"
typer = { version = "<1", extras = ["all"] }
"ruamel.yaml" = "*"
numpy = "*"
pydantic = "^2.0"
pydantic-numpy = ">=7.0.0"
opencv-python = "^4.6.0"
ffmpeg-python = {version = "*", optional = true}
[tool.poetry.extras]
video-extract = ["ffmpeg-python"]
video = ["ffmpeg-python"]
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
[tool.poetry.group.format.dependencies]
black = "*"
isort = "*"
ruff = "*"
[tool.isort]
profile = "black"
line_length = 120
[tool.black]
line-length = 120
target-version = ["py312"]
[tool.ruff]
line-length = 120
[tool.poetry.group.type_checking.dependencies]
pyright = "*"
[tool.pyright]
include = ["mextractor/**", "tests/**"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"