-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 911 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
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "mlops-project"
version = "0.1.0"
description = ""
authors = ["Igor Astashov <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
torch = "^2.1.1"
numpy = "^1.26.2"
pandas = "^2.1.4"
gdown = "^4.7.1"
torchvision = "^0.16.1"
scikit-learn = "^1.3.2"
seaborn = "^0.13.0"
ipython = "^8.18.1"
wandb = "^0.16.1"
black = {extras = ["jupyter"], version = "^23.11.0"}
isort = "^5.13.0"
flake8 = "^6.1.0"
pre-commit = "^3.6.0"
dvc = {extras = ["gdrive"], version = "^3.33.4"}
hydra-core = "^1.3.2"
[tool.black]
line-length = 90
target-version = ["py37"]
skip-string-normalization = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 90
lines_after_imports = 2
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"