-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (47 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (47 loc) · 1.06 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "trashcan"
version = "0.0.1"
description = "TrashCan Segmentation"
requires-python = ">= 3.8, < 3.11"
dependencies = [
"torch ~= 2.4",
"torchmetrics ~= 0.11",
"pytorch-lightning ~= 1.9",
"monai ~= 1.1",
"Pillow ~= 10.4",
"jupyterlab ~= 3.6",
"matplotlib ~= 3.7",
"opencv-python ~= 4.10",
"fire ~= 0.6",
"torchvision",
"scikit-image ~= 0.24",
"shapely ~= 2.0",
"onnx ~= 1.17.0",
"onnxruntime ~= 1.19.2",
"segmentation-models-pytorch ~= 0.3.4",
"streamlit ~= 1.41.1 "
]
[project.optional-dependencies]
lint = [
"black ~= 22.6",
"autoflake ~= 1.4",
"flake8 ~= 4.0",
"pyproject-flake8 ~= 0.0.1a4",
"isort ~= 5.10",
"pre-commit ~= 2.20",
]
dev = ["trashcan[lint]"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line_length = 120
[tool.isort]
profile = "black"
line_length = 120
order_by_type = true
lines_between_types = 1
combine_as_imports = true
force_grid_wrap = 2