-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 937 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
[tool.poetry]
name = "masterthesis"
version = "0.1.0"
description = ""
authors = ["Luca Schilling"]
[tool.poetry.dependencies]
python = "^3.8"
tensorflow = "2.5"
simpleitk = {path = "../../GlobalPackages/build/SimpleITK-build/Wrapping/Python/Packaging"}
yapf = "^0.31.0"
toml = "^0.10.2"
neurite = "^0.1"
ipywidgets = "^7.6.4"
torch = "1.7.1"
voxelmorph = {git = "[email protected]:lucaSchilling/voxelmorph.git", rev = "master", develop = true}
seaborn = "^0.11.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.yapfignore]
ignore_patterns = [
"poetry.lock",
"pyproject.toml",
"README.md"
]
[tool.yapf]
based_on_style = "pep8"
spaces_before_comment = 4
split_before_logical_operator = true