-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
68 lines (59 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "napari-openpiv"
version = "0.1.0" # Replace with your desired version or use setuptools_scm
authors = [
{ name = "Alex Liberzon", email = "[email protected]" },
]
description = "OpenPIV Python plugin to use with napari"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Framework :: napari",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
keywords = ["napari", "OpenPIV", "image-analysis"] # Add relevant keywords
dependencies = [
"numpy>=1.23",
"magicgui>=0.6",
"qtpy>=2.2",
"openpiv>=0.25",
"napari>=0.4.19",
"pyqt5==5.15.10",
"pyqt5-qt5==5.15.2",
]
[project.entry-points."napari.manifest"]
napari-openpiv = "napari_openpiv:napari.yaml"
[project.optional-dependencies]
testing = [
"numpy",
"openpiv",
"tox",
"pytest",
"pytest-cov",
"pytest-qt",
"napari",
"pyqt5"
]
[tool.setuptools_scm]
write_to = "src/napari_openpiv/_version.py"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line-length = 79
[tool.flit.module]
name = "napari_openpiv"
[tool.flit.metadata]
module = "napari_openpiv"