-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.75 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["segment3D"]
#[tool.setuptools.packages.find]
#where = ["."] # list of folders that contain the packages (["."] by default)
#include = ["segment3D"] # package names should match these glob patterns (["*"] by default)
#exclude = ['__pycache__', '__init__.py'] # exclude packages matching these glob patterns (empty by default)
#namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[project]
name="u-Segment3D"
description="Generate consensus 3D segmentation from 2D segmented stacks"
authors = [{name='Felix Y. Zhou', email='felixzhou1@gmail.com'}]
readme = "README.md"
license={file = "LICENSE"}
version = "0.1.4"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
requires-python = ">=3.9, <3.13"
dependencies = [
'numpy<2.0',
'pyarrow<21',
'cellpose<4.0',
'cupy-cuda11x; sys_platform!="darwin"',
'dask[complete]',
'scikit-image',
'scikit-learn',
'imagecodecs<2025',
'contourpy<=1.2.0',
'opencv-python-headless',
'scipy',
'numba',
'matplotlib',
'seaborn',
'trimesh',
'multiprocess',
'tiler',
'connected-components-3d',
'edt<=3.0.0',
'tqdm',
'scikit-fmm; sys_platform=="win"',
'czifile'
]
[project.urls]
Homepage = "https://github.com/DanuserLab/u-segment3D"
Issues = "https://github.com/DanuserLab/u-segment3D/issues"