forked from addicted-by/cancer_classification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (43 loc) · 1.02 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
[tool.poetry]
name = "cancer-classification"
version = "0.1.0"
description = ""
authors = ["addicted-by <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9, <3.11"
torch = { version = "2.0.1+cu117", source="torch"}
torchvision = { version="^0.15.2+cu117", source="torch"}
kaggle = ">=1.5.16"
natsort = ">=8.4.0"
pyyaml = ">=6.0.1"
numpy = ">=1.23.4"
pillow = ">=10.0.1"
scikit-learn = ">=1.3.1"
tqdm = ">=4.64.1"
tensorboard = "^2.14.1"
pandas = "^2.1.1"
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cu117"
priority = "explicit"
[tool.black]
line-length = 90
target-version = ["py39"]
[tool.isort]
src_paths = ["car_color_classification"]
profile = "black"
line_length = 90
lines_after_imports = 2
[tool.nbqa.config]
black = "pyproject.toml"
isort = "pyproject.toml"
flake8 = "setup.cfg"
[tool.nbqa.addopts]
flake8 = ["--extend-ignore=E402"]
[tool.nbqa.mutate]
black = 1
isort = 1
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"