-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
80 lines (72 loc) · 1.44 KB
/
pyproject.toml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["flit_core >=3.2,<4", "packaging~=23.1", "setuptools~=67.8", "wheel~=0.40"]
build-backend = "flit_core.buildapi"
[project]
name = "videoseal"
authors = [{name = "Facebook AI Research"}]
requires-python = ">=3.9"
dynamic = ["version", "description"]
dependencies = [
"setuptools",
"torch>=2.3.1",
"pandas",
"opencv-python",
"omegaconf",
"einops",
"lpips",
"timm==0.9.16",
"pre-commit",
"ipykernel",
"pycocotools",
"pandas",
"PyWavelets",
"av",
"pyav",
"scikit-image",
"pandas",
"tqdm",
"pytorch_msssim",
"tensorboard",
"calflops",
"transformers",
"safetensors",
"pycocotools",
"opencv-python",
"tqdm",
"timm",
"scipy",
"ffmpeg-python",
]
[project.optional-dependencies]
dev = [
"func_argparse",
"pytest",
"black",
"isort",
"flake8",
"pre-commit",
"conda-pack",
]
[tool.flake8]
extend_ignore = ["E", "Y"] # Black
per-file-ignores = [
"__init__.py:F401",
]
[tool.isort]
profile = "black"
[tool.mypy]
disable_error_code = "type-abstract,typeddict-unknown-key"
disallow_untyped_calls = false
disallow_untyped_defs = false
disallow_untyped_decorators = false
ignore_missing_imports = true
python_version = 3.8
show_error_codes = true
show_error_context = true
strict = false
warn_unused_configs = false
warn_unused_ignores = false
exclude = ["notebooks"]
norecursedirs = [
"notebooks/*",
]