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
|
[project]
name = "ffmpeg-progress-yield"
version = "1.0.3"
description = "Run an ffmpeg command with progress"
readme = "README.md"
authors = [
{ name = "Werner Robitza", email = "werner.robitza@gmail.com" }
]
license = "MIT"
license-files = ["LICENSE.md"]
requires-python = ">=3.9"
dependencies = [
"tqdm>=4.38.0",
]
keywords = ["ffmpeg"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/slhck/ffmpeg-progress-yield"
Repository = "https://github.com/slhck/ffmpeg-progress-yield"
[project.scripts]
ffmpeg-progress-yield = "ffmpeg_progress_yield.__main__:main"
[dependency-groups]
dev = [
"pytest>=8.3.2",
"pytest-asyncio>=0.24.0",
"ruff",
"mypy",
"types-tqdm",
"pdoc>=15.0.4",
]
[tool.mypy]
python_version = "3.13"
ignore_missing_imports = true
exclude = ["build"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
|