-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (29 loc) · 945 Bytes
/
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
[tool.poetry]
name = "CV20"
version = "0.1.0"
description = ""
authors = ["SeoYoungDeok <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8.5"
torch = {url = "https://download.pytorch.org/whl/cu117/torch-1.13.0%2Bcu117-cp38-cp38-linux_x86_64.whl"}
torchvision = {url = "https://download.pytorch.org/whl/cu117/torchvision-0.14.0%2Bcu117-cp38-cp38-linux_x86_64.whl"}
torchaudio = {url = "https://download.pytorch.org/whl/cu117/torchaudio-0.13.0%2Bcu117-cp38-cp38-linux_x86_64.whl"}
numpy = "^1.24.2"
pyyaml = "^6.0"
matplotlib = "^3.7.1"
pandas = "^2.0.0"
scikit-learn = "^1.2.2"
timm = "^0.6.13"
tqdm = "^4.65.0"
opencv-python = "^4.7.0.72"
ipykernel = "^6.22.0"
albumentations = "^1.3.0"
[tool.black]
line-length = 88
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
black = "^23.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"