-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
46 lines (42 loc) · 1 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
[tool.poetry]
name = "UDT_cINN"
version = "0.0.1"
description = "This is the project repo for the unsupervised domain transfer project submitted to miccai23"
authors = ["Kris Dreher <k.dreher@dkfz-heidelberg.de>", "Leonardo Ayala <l.menjivar@dkfz-heidelberg.de>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "src" },
]
# Requirements
[tool.poetry.dependencies]
python = ">=3.8"
FrEIA = { git = "https://github.com/VLL-HD/FrEIA.git@257718978a90b28d4354aad7d96d93539a86d4e9" }
click = "*"
Sphinx = "*"
coverage = "*"
flake8 = "*"
python-dotenv = ">=0.5.1"
pandas = "*"
numpy = "<1.24"
scikit-learn = "*"
scipy = "*"
pytorch-lightning = "1.9.0"
omegaconf = "*"
matplotlib_scalebar = "*"
openpyxl = "*"
torch-fidelity = "*"
tensorboard = "*"
seaborn = "*"
dask = "^2023.1.0"
plotly = "^5.13.1"
kaleido = "*"
[tool.poetry.group.docs.dependencies]
sphinx-rtd-theme = "^1.0.0"
Sphinx = "^5.1.1"
myst-parser = "^0.18.0"
[build-system]
requires = [
"poetry >= 0.12"
]
build-backend = "poetry.masonry.api"