-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (82 loc) · 2.41 KB
/
pyproject.toml
File metadata and controls
92 lines (82 loc) · 2.41 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vessqc"
version = "0.8.0"
description = "Quality control plugin for vessel segmentation in napari"
authors = [
{name = "Peter Lampen", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Framework :: napari",
"Topic :: Scientific/Engineering :: Image Processing",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
]
dependencies = [
"joblib>=1.2",
"napari>=0.4.18",
"numpy>=1.23",
"qtpy>=2.3",
"scipy>=1.9",
"SimpleITK>=2.2",
"tifffile>=2023.2.28",
]
[project.optional-dependencies]
qt = ["pyqt5"]
testing = [
"tox",
"pytest",
"pytest-cov",
"pytest-qt",
]
[project.urls]
"Homepage" = "https://github.com/MMV-Lab/VessQC"
"Bug Tracker" = "https://github.com/MMV-Lab/VessQC/issues"
"Documentation" = "https://github.com/MMV-Lab/VessQC#README.md"
"Source Code" = "https://github.com/MMV-Lab/VessQC"
"User Support" = "https://github.com/MMV-Lab/VessQC/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[project.entry-points."napari.manifest"]
vessqc = "vessqc:napari.yaml"
[tool.bumpversion]
current_version = "0.8.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
tag = false
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = false
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "src/vessqc/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'