22 lines
413 B
TOML
22 lines
413 B
TOML
[project]
|
|
name = "duck-preview"
|
|
version = "0.1.0"
|
|
description = "Realtime camera preview application with performance monitoring"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"PySide6>=6.11",
|
|
]
|
|
|
|
[project.scripts]
|
|
duck-preview = "duck_preview.app:main"
|
|
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "N", "W"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|