forked from Islamsedibrahim1/SALT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 819 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 819 Bytes
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
[tool.poetry]
name = "SALT"
version = "0.1.0"
description = "Softmax for Arbitrary Label Trees (SALT) is a framework for training segmentation networks using conditional probabilities to model hierarchical relationships in the data."
authors = ["SHIP AI <all.shipai@uk-essen.de>"]
[tool.poetry.dependencies]
python = "^3.8"
monai = "^1.0.0"
itk = "^5.2.1"
nibabel = "^3.2.1"
SimpleITK = "^2.1.1"
pydicom = "^2.2.2"
scikit-image = "^0.19.1"
pytorch-lightning = "^1.8.0"
tensorboard = "^2.12.0"
tensorboardX = "^2.4.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.14.0"
flake8 = "^3.9.2"
mypy = "^0.910"
black = "^23.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[virtualenvs]
create = true
in-project = true
[tool.isort]
profile = "black"
line_length = 88