forked from imyiningliu/cellstitch
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.39 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cellstitch-cuda"
version = "1.5.7"
description = "CUDA-accelerated CellStitch 3D labeling using Instanseg segmentation."
readme = "README.md"
authors = [{name = "Tom van Leeuwen", email = "tom@tleeuwen.nl"}]
classifiers = [
"Environment :: GPU :: NVIDIA CUDA :: 11",
"Environment :: GPU :: NVIDIA CUDA :: 12",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Image Processing"
]
keywords = ["3D labeling", "cell labels", "2D stitching"]
dependencies = [
"instanseg-torch>=0.1.1",
"cellpose>=4.0.8",
"POT>=0.8.1",
"sphinx",
"sphinxcontrib-apidoc",
"tifffile",
"numpy",
"cupy-cuda12x",
"joblib",
"fill-voids",
]
requires-python = ">=3.10, <3.12"
urls = { "Homepage" = "https://github.com/Tomvl117/cellstitch-cuda" }
[tool.black]
line-length = 88
target-version = ['py310', 'py311']
[tool.bumpver]
current_version = "1.5.7"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
tag_message = "{new_version}"
tag_scope = "default"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'^version = "{version}"',
'^current_version = "{version}"',
]