21 lines
472 B
TOML
21 lines
472 B
TOML
[project]
|
|
name = "wov-node-ffmpeg"
|
|
version = "0.1.0"
|
|
description = "WOV ffmpeg media node"
|
|
requires-python = ">=3.11"
|
|
dependencies = ["wov-sdk", "imageio-ffmpeg>=0.6"]
|
|
|
|
[tool.uv.sources]
|
|
wov-sdk = { path = "../wov-sdk" }
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest", "pytest-cov"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|
|
addopts = "--cov=wov_node_ffmpeg --cov-report=term-missing --cov-fail-under=100"
|
|
|
|
[tool.setuptools]
|
|
packages = ["wov_node_ffmpeg"]
|