-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.42 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 = "clickpoints"
version = "1.10.0"
description = "Scientific toolbox for manual and automatic image evaluation."
authors = ["Richard Gerum <[email protected]>", "Sebastian Richter <[email protected]>"]
maintainers = ["Alexander Winterl <[email protected]>"]
repository = "https://github.com/fabrylab/clickpoints"
documentation = "https://clickpoints.readthedocs.io/"
license = "GPLv3"
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.8"
scipy = "1.9.3"
matplotlib = "*"
imageio = ">=2.0.1"
QtPy = "*"
QtAwesome = "*"
qimage2ndarray = "*"
Pillow = "*"
peewee = ">= 3.1"
natsort = "*"
tifffile = ">=2020.2.16"
imagecodecs = "*"
sortedcontainers = "*"
psutil = "*"
imageio-ffmpeg = "*"
qasync = "*"
PyQt5 = "*"
python-dateutil = ">=2.8.1"
scikit-image = ">=0.14"
sphinx-rtd-theme = { version = "^1.1.1", optional = true }
sphinxcontrib-bibtex = { version = "^2.5.0", optional = true }
sphinxcontrib-svg2pdfconverter = { version = "^1.2.1", optional = true }
nbsphinx = { version = "^0.8.9", optional = true }
mock = { version = "^4.0.3", optional = true }
[tool.poetry.extras]
docs = ["sphinx-rtd-theme", "sphinxcontrib-bibtex", "sphinxcontrib-svg2pdfconverter", "nbsphinx", "mock"]
[tool.poetry.scripts]
clickpoints = "clickpoints.launch:main"
[tool.poetry.group.dev.dependencies]
pytest-qt = "^4.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"