forked from boostcampaitech5/level3_cv_finalproject-cv-15
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (55 loc) · 1.41 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
[tool.poetry]
name = "HypeSquad"
version = "0.1.0"
description = ""
authors = ["SeoYoungDeok <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "=3.11.4"
torch = {url = "https://download.pytorch.org/whl/cu118/torch-2.0.1%2Bcu118-cp311-cp311-linux_x86_64.whl"}
torchvision = {url = "https://download.pytorch.org/whl/cu118/torchvision-0.15.2%2Bcu118-cp311-cp311-linux_x86_64.whl"}
opencv-python = "^4.7.0.72"
numpy = "^1.24.3"
matplotlib = "^3.7.1"
pyyaml = "^6.0"
ipykernel = "^6.23.1"
albumentations = "^1.3.0"
wandb = "^0.15.3"
hydra-core = "^1.3.2"
hydra-zen = "^0.10.1"
timm = "^0.9.2"
tqdm = "^4.65.0"
rich = "^13.4.1"
torchmetrics = "1.0.0"
lightning = "^2.0.2"
openmim = "^0.3.7"
segmentation-models-pytorch = "^0.3.3"
pandas = "^2.0.2"
transformers = "^4.30.2"
optuna = "^3.2.0"
fastapi = {extras = ["all"], version = "^0.100.0"}
celery = {extras = ["redis"], version = "^5.3.1"}
synology-api = "^0.6.2"
python-dotenv = "^1.0.0"
mysql-connector-python = "^8.1.0"
mmengine = "^0.8.2"
mmcv = ">=2.0.0"
pydantic = "^2.1.1"
mmpretrain = "^1.0.0"
mmdet = "^3.1.0"
streamlit = "^1.25.0"
streamlit-cropper = "^0.2.1"
bcrypt = "^4.0.1"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
black = "^23.3.0"
isort = "^5.12.0"
pytest = "^7.3.1"
pre-commit = "^3.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"