-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (67 loc) · 1.57 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
[tool.poetry]
name = "Video3D"
version = "0.1.0"
description = ""
authors = ["ytya <ytyadev@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.10"
torch = { url="https://download.pytorch.org/whl/cu121/torch-2.2.2%2Bcu121-cp310-cp310-win_amd64.whl" }
torchvision = { url="https://download.pytorch.org/whl/cu121/torchvision-0.17.2%2Bcu121-cp310-cp310-win_amd64.whl" }
tqdm = "*"
pillow = "*"
fire = "*"
opencv-python = "*"
scikit-video = "*"
einops = "*"
matplotlib = "*"
# MiDaS
timm = "0.6.12" # 0.9.1 だと実行時エラー
imutils = "0.5.4"
# frame-interpolation
# tensorflow = "2.11.1"
# tensorflow-io-gcs-filesystem = "0.31.0" # 0.32.0 だとインストールエラー
# opencv-contrib-python = "*"
# matplotlib = "*"
# numpy = "*"
# einops = "*"
# imutils = "*"
# tensorflow = "2.8.4"
# tensorflow-datasets = "*"
# tensorflow-addons = "*"
# absl-py = "*"
# gin-config = "*"
# parameterized = "*"
# mediapy = "*"
# scikit-image = "*"
# apache-beam = "2.44.0"
# natsort = "*"
# gdown = "*"
# pyarrow = "9.0.0"
[tool.poetry.group.dev.dependencies]
jupyterlab = "*"
pytest = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests",]
addopts = "--basetemp ./tests/tmp"
[tool.ruff]
target-version = "py310"
line-length = 119
extend-exclude = [
"nvds"
]
[tool.ruff.lint]
select = [
"E",
"F",
"W",
"I",
]
ignore = [
"E501", # Line too long
"W293", # Blank line contains whitespace
]
fixable = ["ALL"]