-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.39 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "cvvdp"
version = "0.5.4"
description = "PyTorch code for 'ColorVideoVDP': a full-reference visual quality metric that predicts the perceptual difference between pairs of images or videos."
readme = "README.md"
license = "MIT"
maintainers = [
{ name="Rafał Mantiuk", email="mantiuk@gmail.com" },
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy>=1.17.3",
"scipy>=1.10.0",
"ffmpeg-python>=0.2.0",
"torch>=1.13.1",
"torchvision>=0.9.2",
"ffmpeg>=1.4",
"imageio>=2.19.5",
"matplotlib>=3.8.0",
"huggingface_hub>=0.33.4",
"einops>=0.8.1",
"PyEXR>=0.3.10",
"nvidia-ml-py"
]
[project.scripts]
cvvdp = "pycvvdp.run_cvvdp:main"
[tool.setuptools]
packages = ["pycvvdp", "pycvvdp.third_party"]
include-package-data = true
[tool.setuptools.package-data]
pycvvdp = [
"csf_cache/*.mat",
"vvdp_data/*.json",
"vvdp_data/README.md",
"vvdp_data/cvvdp_ml_saliency/*.json",
"vvdp_data/cvvdp_ml_transformer/*.json",
]
[project.urls]
Homepage = "https://github.com/gfxdisp/ColorVideoVDP"
Issues = "https://github.com/gfxdisp/ColorVideoVDP/issues"