Files
dl-organizer/pyproject.toml
T
79797644e1 chore: trim dead code, modularize CLI, and archive stale docs
Extract review-plan, report, quarantine, state, and config handlers into
commands/ with shared cli_helpers; remove unused exceptions and duplicate
plan summary wrappers. Archive superseded review markdown, sync docs to
517-test baseline, and fix empty series titles when only a quality tag remains.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-21 10:36:03 +08:00

39 lines
713 B
TOML

[project]
name = "video-library-manager"
version = "0.1.0"
description = "A Python-based CLI tool for managing personal video collections"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"click>=8.1.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"hypothesis>=6.82.0",
]
tui = [
"textual>=0.47.0",
]
[project.scripts]
vlm = "vlm.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/vlm"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.hypothesis]
max_examples = 100