-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1014 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1014 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
34
35
36
37
38
39
40
[tool.poetry]
name = "scenedataset"
version = "1.0.2"
description = "PyTorch dataset which uses PySceneDetect to split videos into scenes"
authors = ["Farid Abdalla"]
license = "BSD 3-Clause"
readme = "README.md"
homepage = "https://github.com/Kurokabe/SceneDataset"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
decord = ">=0.6.0"
loguru = ">=0.6.0"
scenedetect = ">=0.6.1"
torch = ">=1.13.1"
opencv-python = ">=4.7.0.68"
torchmetrics = {extras = ["image"], version = ">=0.11.1"}
matplotlib = ">=3.6.3"
scipy = ">=1.10.0"
torch-fidelity = ">=0.3.0"
click = ">=8.1.3"
joblib = "^1.2.0"
ipywidgets = "7.7.2"
python-magic = "^0.4.27"
ffmpeg-python = "0.2.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.1"
pytest-cov = ">=4.0.0"
ipykernel = ">=6.20.2"
black = {version = ">=23.1.0", allow-prereleases = true}
ipywidgets = "==7.7.2"
torchvision = ">=0.14.1"
imageio = ">=2.25.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"