|
| 1 | +[build-system] |
| 2 | +requires = ["uv_build>=0.8.14,<0.9.0"] |
| 3 | +build-backend = "uv_build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "ffmpeg-normalize" |
| 7 | +version = "1.33.0" |
| 8 | +description = "Normalize audio via ffmpeg" |
| 9 | +readme = "README.md" |
| 10 | +license = "MIT" |
| 11 | +license-files = ["LICENSE.md"] |
| 12 | +authors = [ |
| 13 | + {name = "Werner Robitza", email = "werner.robitza@gmail.com"} |
| 14 | +] |
| 15 | +keywords = ["ffmpeg", "normalize", "audio"] |
| 16 | +classifiers = [ |
| 17 | + "Development Status :: 5 - Production/Stable", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Topic :: Multimedia :: Sound/Audio", |
| 20 | + "Topic :: Multimedia :: Sound/Audio :: Analysis", |
| 21 | + "Topic :: Multimedia :: Sound/Audio :: Conversion", |
| 22 | + "License :: OSI Approved :: MIT License", |
| 23 | + "Natural Language :: English", |
| 24 | + "Programming Language :: Python :: 3", |
| 25 | + "Programming Language :: Python :: 3.9", |
| 26 | + "Programming Language :: Python :: 3.10", |
| 27 | + "Programming Language :: Python :: 3.11", |
| 28 | + "Programming Language :: Python :: 3.12", |
| 29 | + "Programming Language :: Python :: 3.13", |
| 30 | +] |
| 31 | +requires-python = ">=3.9" |
| 32 | +dependencies = [ |
| 33 | + "tqdm>=4.64.1", |
| 34 | + "colorama>=0.4.6; platform_system=='Windows'", |
| 35 | + "ffmpeg-progress-yield>=1.0.1", |
| 36 | + "colorlog==6.7.0", |
| 37 | + "mutagen>=1.47.0", |
| 38 | +] |
| 39 | + |
| 40 | +[project.urls] |
| 41 | +Homepage = "https://github.com/slhck/ffmpeg-normalize" |
| 42 | +Repository = "https://github.com/slhck/ffmpeg-normalize" |
| 43 | + |
| 44 | +[project.scripts] |
| 45 | +ffmpeg-normalize = "ffmpeg_normalize.__main__:main" |
| 46 | + |
| 47 | +[tool.uv_build] |
| 48 | +src-layout = true |
| 49 | + |
| 50 | +[dependency-groups] |
| 51 | +dev = [ |
| 52 | + "pytest>=8.1.1,<9", |
| 53 | + "ruff>=0.12.11", |
| 54 | + "mypy>=1.0.0", |
| 55 | + "types-tqdm", |
| 56 | +] |
| 57 | + |
| 58 | +[tool.mypy] |
| 59 | +python_version = "3.13" |
| 60 | +ignore_missing_imports = true |
| 61 | +exclude = ["build"] |
| 62 | +namespace_packages = false |
| 63 | +no_implicit_optional = true |
| 64 | +check_untyped_defs = true |
| 65 | +warn_return_any = true |
| 66 | +warn_unused_ignores = true |
| 67 | +show_error_codes = true |
0 commit comments