-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.13 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 = "boa-contrast"
version = "0.1.4"
description = ""
authors = ["Giulia Baldini <[email protected]>"]
readme = "README.md"
repository = "https://github.com/UMEssen/BOA-Contrast"
license = "MIT License"
keywords = ["python", "contrast", "intravenous", "gastrointestinal tract", "CT", "machine learning"]
include = [
"LICENCE",
]
packages = [{include = "boa_contrast"}]
[tool.poetry.scripts]
contrast-recognition = "boa_contrast.cli:run"
[tool.poetry.dependencies]
python = "^3.8,<3.11" # The <3.11 is for scipy
opencv-python = "^4.5.5.64" # 4.5.5.64 definitely works
connected-components-3d = "^3.10.2"
scikit-image = "^0.19.3"
simpleitk = "^2.2.0"
totalsegmentator = { version = "1.5.5", optional = true }
pandas = "^1.5.2"
threadpoolctl = "^3.1.0"
scikit-learn = "^1.1.2"
[tool.poetry.dev-dependencies]
pre-commit = "^2.14.0"
flake8 = "^3.9.2"
mypy = "^0.981"
black = "^22.3.0"
[tool.poetry.extras]
totalsegmentator = ["totalsegmentator"]
[tool.poetry.group.optional.dependencies]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 88