Files
removeads/pyproject.toml
T
2026-08-28 16:23:35 +02:00

30 lines
687 B
TOML

[project]
name = "tscut"
version = "0.9.0"
description = "A tool to cut and reassemble parts of a video at the precision of a single frame."
authors = [
{name = "Frédéric Tronel"}
]
license = {text = "GPL-2.0-or-later"}
readme = "README.md"
requires-python = ">=3.11,<4"
dependencies = ["requests", "xmltodict", "coloredlogs", "tqdm", "iso639-lang", "hexdump"]
[tool.poetry]
packages = [
{ include = "tscut", from = "src" }
]
[project.scripts]
tscut = "tscut.cli:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
ruff = "^0.16.2"
mypy = "^2.3.0"
pytest = "^9.1.1"
pylint = "^4.0.7"