mirror of
https://github.com/shadoll/moma.git
synced 2026-08-28 03:27:34 +00:00
- Updated `DEVELOP.md` to reflect CI testing on Python 3.12. - Changed prerequisites in `INSTALL.md` to require Python 3.12 or higher. - Modified `README.md` to specify Python 3.12 as the minimum requirement. - Updated `pyproject.toml` and `uv.lock` to require Python 3.12.
37 lines
732 B
TOML
37 lines
732 B
TOML
[project]
|
|
name = "moma"
|
|
version = "0.8.11"
|
|
description = "Terminal-based media file renamer and metadata viewer"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
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]
|
|
moma = "src.main:main"
|
|
bump-version = "src.bump:main"
|
|
release = "src.release:main"
|
|
|
|
[tool.uv]
|
|
package = true
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "--strict-markers"
|
|
testpaths = ["src/test"]
|
|
python_files = ["test_*.py"]
|
|
python_classes = ["Test*"]
|
|
python_functions = ["test_*"]
|