-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
126 lines (102 loc) · 2.94 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# %shell> poetry install --with ml-framework
# %shell> poetry install --all-extras
[tool.mypy]
python_version = "3.13"
strict = true
[tool.poetry]
name = "python-study"
version = "0.1.0"
description = ""
authors = ["wbfw109v2 <[email protected]>"]
packages = [{ from = "study", include = "python_study" }]
[tool.poetry.dependencies]
python = "~3.13.0"
ipykernel = "*"
grpcio-tools = "*"
# ultralytics = "^8.2.99"
# opencv-python = "^4.10.0.84"
# tensorflow = {extras = [], version = "^2.17.0", allow-prereleases = true}
# matplotlib = "^3.9.2"
# imageio = {extras = ["ffmpeg"], version = "^2.35.1"}
# mediapipe = "^0.10.15"
# pandas = "^2.2.2"
# pyside6 = "^6.8.0.2"
# scikit-build = "^0.18.1"
# tensorrt = "10.6.0.post1"
# tensorrt = ">=7.0.0,<10.1.0"
# pyserial = "^3.5"
[tool.poetry.group.dev.dependencies]
bandit = "*"
ruff = "*"
# [tool.poetry.group.test.dependencies]
# pytest-cov = "*"
# pytest-bdd = "*"
# pytest-factoryboy = "^2.5.1"
# [tool.pytest.ini_options]
# bdd_features_base_dir = "features/"
# addopts = ["--import-mode=importlib"]
# pythonpath = "src/python"
# [tool.poetry.group.ml-base.dependencies]
# # pycuda = "^2024.1.2"
# torch = "^2.4.1"
# onnx = "^1.16.2"
# [tool.poetry.group.ml-pyskl]
# optional = true
# [tool.poetry.group.ml-pyskl.dependencies]
# #[⚠️ [📅 2024-10-14 06:38:07] You require to run %shell> poetry run pip install --no-build-isolation xtcocotools==1.14.3 chumpy
# pyskl = {path = "external/pyskl", develop = true}
# [tool.poetry.group.ml-mmaction]
# optional = true
# [tool.poetry.group.ml-mmaction.dependencies]
# mmaction2 = {path = "external/mmaction2", develop = true}
# mmengine = "^0.10.5"
# openmim = "^0.3.9"
# torch = "^2.4.1"
# torchvision = "^0.19.1"
# mmcv = "<2.2.0"
# moviepy = "^1.0.3"
# einops = "^0.8.0"
# [tool.poetry.extras]
# mmaction_all = [
# "decord",
# "einops",
# "matplotlib",
# "numpy",
# "opencv-contrib-python",
# "pillow",
# "scipy",
# "av",
# "future",
# "imgaug",
# "librosa",
# "lmdb",
# "openai-clip",
# "packaging",
# "pims",
# "PyTurboJPEG",
# "soundfile",
# "tensorboard",
# "wandb"
# ]
# mmaction_tests = ["coverage", "flake8", "interrogate", "isort", "parameterized", "pytest", "pytest-runner", "xdoctest", "yapf"]
# mmaction_mim = ["openmim"]
# mmaction_multimodal = ["some-multimodal-package"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Define OpenVINO-specific group from https://openvinotoolkit.github.io/training_extensions/stable/guide/get_started/installation.html#run-tests
# [tool.poetry.group.openvino.dependencies]
# openvino = "*"
# [tool.poetry.group.openmmlab.dependencies]
# torchvision = "*"
# torch = "*"
# mmengine = "*"
# mmcv = "*"
# mmaction2 = "*"
# [tool.poetry.group.efficientgcn.dependencies]
# seaborn = "*"
# pyyaml = "*"
# nvidia-ml-py3 = "*"
# tensorboardX = "*"
# thop = "*"
### 💡 https://pytorch.org/get-started/previous-versions/