-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 792 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[project]
name = "vview"
version = "1.0.0"
description = "Video viewer web application with thumbnail generation"
requires-python = ">=3.11"
dependencies = [
"cherrypy>=18.0.0",
"Pillow>=10.0.0",
"yattag>=1.0.0",
"pycryptodomex>=3.0.0",
]
# Note: python3-av (PyAV) should be installed via Debian packages: apt install python3-av
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
pythonpath = ["."]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]