-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1014 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
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "aimi-prostate-mr"
version = "0.1.0"
description = ""
authors = ["Jeff VanOss <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
ipykernel = "^6.25.2"
simpleitk = "^2.3.0"
pydicom = "^2.4.3"
requests = "^2.31.0"
seaborn = "^0.12.2"
pydicom-seg = "^0.4.1"
scikit-learn = "^1.3.1"
segmentationmetrics = "^1.0.1"
tqdm = "^4.66.1"
ipywidgets = "^8.1.3"
google-cloud-bigquery = "^3.25.0"
google-cloud-bigquery-storage = { extras = [
"pandas",
"pyarrow",
], version = "^2.25.0" }
idc-index = "^0.5.10"
grpcio = "^1.65.4"
db-dtypes = "^1.2.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.5"
mypy = "^1.5.1"
pre-commit = "^3.3.3"
[tool.ruff]
target-version = "py39"
lint.select = ["I", "UP", "SIM"]
lint.ignore = ["UP007"]
lint.fixable = ["ALL"]
[tool.mypy]
implicit_optional = true
check_untyped_defs = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"