-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (31 loc) · 978 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
[tool.poetry]
name = "wsiml"
version = "0.0"
description = "Project to support machine learning on whole slide images. Currently a placeholder in pre-alpha."
authors = ["S. Joshua Swamidass <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9,<4"
xarray = ">=2023.9.0"
xarray-datatree = ">=0.0.12"
tiffslide = ">=2.2.0"
tiffslide-xarray = ">=0.2" # required
# itk-elastix = { version = "^0.19.0", optional = true }
dm-tree = ">=0.1.8"
# onnxruntime = "^1.18.0"
pooch = ">=1.8.2"
data-science-types = ">=0.2.23"
[tool.poetry.extras]
# register = ["itk-elastix"]
[tool.poetry.group.dev.dependencies]
click = "^8.1.3"
pytest = ">=7.4.2"
hypothesis = ">=6.88.1"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
# vcs = "git"
style = "pep440"
[tool.poetry-dynamic-versioning.substitution]
folders = [{"path" = "wsiml"}]