forked from imi-bigpicture/wsidicomizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.55 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
47
48
49
50
51
52
[tool.poetry]
name = "wsidicomizer"
version = "0.13.0"
description = "Tool for reading WSI files from proprietary formats and optionally convert them to to DICOM"
authors = ["Erik O Gabrielsson <erik.o.gabrielsson@sectra.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/imi-bigpicture/wsidicomizer"
keywords = ["whole slide image", "digital pathology", "dicom", "converter"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps."
]
[tool.poetry.dependencies]
python = "^3.9"
wsidicom = "^0.18.2"
opentile = "^0.11.1"
numpy = "^1.22.0"
pydicom = ">=2.1.0"
czifile = ">=2019.7.2"
tiffslide = "^2.4.0"
openslide-python = { version = "^1.3.0", optional = true }
scyjava = { version = "^1.8.1", optional = true }
ome-types = {version = "^0.5.0", optional = true }
[tool.poetry.extras]
openslide = ["openslide-python"]
bioformats = ["scyjava", "ome-types"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-watch = "^4.2.0"
requests = "^2.28.1"
dicom-validator = "^0.4.0"
black = "^24.2.0"
flake8 = "^7.0.0"
openslide-python = "^1.3.0"
coverage = "^7.2.7"
codespell = "^2.2.5"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
wsidicomizer = "wsidicomizer.cli:main"
bioformats_wsidicomizer = "wsidicomizer.extras.bioformats.bioformats_cli:main"