-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (30 loc) · 903 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
[tool.poetry]
name = "viewmask"
version = "0.3.1"
description = "A Python package and CLI to view XML annotations and NumPy masks."
license = "MIT"
authors = ["sumanthratna <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/sumanthratna/viewmask"
documentation = "https://viewmask.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
click = "^8.0.1"
numpy = "^1.18.4"
opencv-python-headless = "^4.2.0"
openslide-python = "^1.1.1"
dask-image = "^0.6.0"
scikit-image = "^0.18.1"
Pillow = "^8.0.0"
napari = {version = "^0.4.2", optional = true}
scipy = "^1.6.3"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
Sphinx = "^4.0.2"
sphinx-click = "^3.0.0"
napari = {extras = ["pyside2"], version = "^0.4.2"}
[tool.poetry.scripts]
viewmask = "viewmask.cli:cli"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"