-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (54 loc) · 1.87 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
[tool.poetry]
name = "ffmpeg-media-type"
version = "0.0.0"
description = "ffmpeg-media-type is a Python library that utilizes FFmpeg to extract crucial details from media files, such as duration, width, and height. With seamless integration of 100% typehint support, it offers a user-friendly interface for easy access to media file information."
authors = ["lucemia <[email protected]>"]
readme = "README.md"
packages = [{ include = "ffmpeg_media_type", from = "src" }]
include = ["ffmpeg_media_type/py.typed", "ffmpeg_media_type/cache/*.json"]
exclude = ["**/tests", "**/test_data", "**/conftest.py"]
keywords = ["ffmpeg", "ffprobe", "video", "image", "audio", "media", "mimetype", "mp4", "mp3", "mov", "webm"]
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
# Code Gen
requests = "^2.31.0"
beautifulsoup4 = "^4.12.2"
typer = ">=0.9,<0.16"
# test
pre-commit = ">=3.3.3,<5.0.0"
mypy = "^1.4.1"
syrupy = "^4.0.5"
pytest = ">=7.4,<9.0"
pytest-vcr = "^1.0.2"
pytest-cov = ">=4.1,<7.0"
# Doc
mkdocs = "*"
markdown-callouts = "^0.4.0"
mkdocs-material = "^9.5.9"
mkdocstrings = ">=0.24,<0.28"
mkdocstrings-python = "^1.8.0"
pymdown-extensions = "^10.7"
griffe_inherited_docstrings = "*"
black = "*"
ipykernel = "^6.29.4"
mknotebooks = "*"
[tool.poetry.scripts]
rebuild = "scripts.main:app"
[tool.poetry-dynamic-versioning]
enable = true
pattern = "default-unprefixed"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"