-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (66 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (66 loc) · 1.68 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "clickpoints"
version = "1.10.0"
description = "Scientific toolbox for manual and automatic image evaluation."
authors = [
{ name = "Richard Gerum", email = "richard.gerum@fau.de" },
{ name = "Sebastian Richter", email = "57496278+foxsr@users.noreply.github.com" },
]
maintainers = [
{ name = "Alexander Winterl", email = "alexander.winterl@fau.de" },
]
readme = "README.rst"
license = "GPL-3.0-only"
requires-python = ">=3.10,<3.14"
dependencies = [
"imagecodecs",
"imageio>=2.0.1",
"imageio-ffmpeg",
"matplotlib",
"natsort",
"opencv-python>=4.11.0.86,<5.0.0.0",
"peewee>=3.1",
"pillow",
"pip",
"psutil",
"pyside6>=6.8.2.1,<7.0.0.0",
"python-dateutil>=2.8.1",
"qimage2ndarray",
"qtawesome",
"qtpy",
"scikit-image>=0.14",
"scipy>=1.15.2,<2.0.0",
"sortedcontainers",
"tifffile>=2020.2.16",
]
[project.urls]
Repository = "https://github.com/fabrylab/clickpoints"
Documentation = "https://clickpoints.readthedocs.io/"
[project.optional-dependencies]
docs = [
"mock>=4.0.3,<5.0.0",
"nbsphinx>=0.8.9,<0.9.0",
"sphinx-rtd-theme>=1.1.1,<2.0.0",
"sphinxcontrib-bibtex>=2.5.0,<3.0.0",
"sphinxcontrib-svg2pdfconverter>=1.2.1,<2.0.0",
]
[project.scripts]
clickpoints = "clickpoints.launch:main"
[dependency-groups]
dev = [
"auto-py-to-exe>=2.33.0,<3.0.0",
"pyinstaller>=6.12,<7.0",
"pytest-qt>=4.2.0,<5.0.0",
]
[tool.pytest.ini_options]
python_files = ["Test_*.py"]
[tool.setuptools.package-data]
clickpoints = [
"*.txt",
"icons/*",
]
[tool.setuptools.packages.find]
include = ["clickpoints*"]
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"