Files
renamer/pyproject.toml
sHa 917d25b360 Add decorators for formatting various media attributes
- Introduced `DurationDecorators` for full and short duration formatting.
- Added `ExtensionDecorators` for formatting extension information.
- Created `ResolutionDecorators` for formatting resolution dimensions.
- Implemented `SizeDecorators` for full and short size formatting.
- Enhanced `TextDecorators` with additional formatting options including blue and grey text, URL formatting, and escaping rich markup.
- Developed `TrackDecorators` for formatting video, audio, and subtitle track data.
- Refactored `MediaPanelView` to utilize a new `MediaPanelProperties` class for cleaner property management and formatting.
- Updated `media_panel_properties.py` to include formatted properties for file info, TMDB data, metadata extraction, media info extraction, and filename extraction.
- Bumped version to 0.6.5 in `uv.lock`.
2026-01-03 10:13:17 +00:00

37 lines
753 B
TOML

[project]
name = "renamer"
version = "0.6.5"
description = "Terminal-based media file renamer and metadata viewer"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"mutagen>=1.47.0",
"textual>=6.11.0",
"python-magic>=0.4.27",
"pymediainfo>=6.0.0",
"pytest>=7.0.0",
"langcodes>=3.5.1",
"requests>=2.31.0",
"rich-pixels>=1.0.0",
]
[project.optional-dependencies]
dev = [
"mypy>=1.0.0",
]
[project.scripts]
renamer = "renamer.main:main"
bump-version = "renamer.bump:main"
release = "renamer.release:main"
[tool.uv]
package = true
[tool.pytest.ini_options]
addopts = "--strict-markers"
testpaths = ["renamer/test"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]