-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
134 lines (120 loc) · 3.53 KB
/
pyproject.toml
File metadata and controls
134 lines (120 loc) · 3.53 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# SPDX-FileCopyrightText: 2024 Lukas Schrangl <lukas.schrangl@boku.ac.at>
#
# SPDX-License-Identifier: BSD-3-Clause
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
dynamic = ["version"]
name = "sdt-python"
dependencies = [
"imageio >= 2.29",
"lazy_loader",
"matplotlib",
"numpy>=2.1",
"opencv-python",
"pandas>=2.2.3",
"pyyaml",
"tables>=3.10",
"tifffile >= 2022.2.2",
"scipy > 0.18",
]
requires-python = ">= 3.10"
authors = [
{ name = "Lukas Schrangl", email = "lukas.schrangl@boku.ac.at" }
]
maintainers = [
{ name = "Lukas Schrangl", email = "lukas.schrangl@boku.ac.at" }
]
description = "Tools for fluorescence microscopy analysis"
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
]
license-files = { globs = ["LICENSES/*.txt", "sdt/gui/breeze-icons/COPYING-ICONS"] }
[project.urls]
Documentation = "https://schuetzgroup.github.io/sdt-python"
Repository = "https://github.com/schuetzgroup/sdt-python"
[dependency-groups]
dev = [
"lmfit>=1.3.3",
"numba>=0.60.0",
"pims>=0.7",
"pytest>=8.3.5",
"pytest-qt>=4.4.0",
"pywavelets>=1.6.0",
"scikit-learn>=1.6.1",
"trackpy>=0.6.4",
]
[project.optional-dependencies]
gui = [
"pyside6>=6.10.2",
]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.hatch.version]
path = "sdt/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [
".*",
"/doc/_build",
# unneeded icons below; keep in sync with wheel!
"/sdt/gui/breeze-icons/autotests",
"/sdt/gui/breeze-icons/cmake",
"/sdt/gui/breeze-icons/icons/*/[13456789]*/*.svg",
"/sdt/gui/breeze-icons/icons/*/22@*/*.svg",
"/sdt/gui/breeze-icons/icons/*/256*/*.svg",
"/sdt/gui/breeze-icons/icons/*/symbolic*/*.svg",
"/sdt/gui/breeze-icons/icons-dark",
"/sdt/gui/breeze-icons/webfont",
"/sdt/gui/breeze-icons/CMakeLists.txt",
"/sdt/gui/breeze-icons/metainfo.yaml",
"/sdt/gui/breeze-icons/qrcAlias.cpp",
"/sdt/gui/breeze-icons/*.py",
"/sdt/gui/breeze-icons/*.sh",
]
only-include = [
"/doc",
"/sdt",
"/tests",
]
[tool.hatch.build.targets.wheel]
exclude = [
# unneeded icons below; keep in sync with sdist!
"/sdt/gui/breeze-icons/autotests",
"/sdt/gui/breeze-icons/cmake",
"/sdt/gui/breeze-icons/icons/*/[13456789]*/*.svg",
"/sdt/gui/breeze-icons/icons/*/22@*/*.svg",
"/sdt/gui/breeze-icons/icons/*/256*/*.svg",
"/sdt/gui/breeze-icons/icons/*/symbolic*/*.svg",
"/sdt/gui/breeze-icons/icons-dark",
"/sdt/gui/breeze-icons/webfont",
"/sdt/gui/breeze-icons/CMakeLists.txt",
"/sdt/gui/breeze-icons/metainfo.yaml",
"/sdt/gui/breeze-icons/qrcAlias.cpp",
"/sdt/gui/breeze-icons/*.py",
"/sdt/gui/breeze-icons/*.sh",
]
only-include = [
"/sdt",
]
[tool.pytest.ini_options]
markers = "slow: tests that take some time"
[tool.pyright]
venvPath = "."
venv = ".venv"
reportIncompatibleMethodOverride = false