-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.4 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project]
name = "cellmap-models"
description = "Repository of model architectures and network weights used for CellMap segmentations."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
]
keywords = ["machine learning", "deep learning", "cell segmentation", "cellpose", "cellmap"]
license = { text = "BSD 3-Clause License" }
authors = [
{ email = "rhoadesj@hhmi.org", name = "Jeff Rhoades" },
]
version = "0.2.4"
dependencies = [
'torch',
'torchvision',
'numpy',
'tqdm',
'ml-collections',
'pydantic',
'lazy_loader',
]
[project.optional-dependencies]
dev = [
'pytest',
'pytest-cov',
'pytest-mock',
'black',
'mypy',
'pdoc',
'pre-commit',
]
cellpose = ['cellpose']
pretrained = ['cellpose[gui]']
dacapo = ["dacapo-ml", "funlib.geometry"]
export = ["onnxruntime"]
huggingface = ["huggingface-hub"]
all = ["cellmap-models[dev,cellpose,pretrained,dacapo,export,huggingface]"]
[project.urls]
homepage = "https://janelia-cellmap.github.io/cellmap-models"
repository = "https://github.com/janelia-cellmap/cellmap-models"
[tool.mypy]
exclude = ['setup*']
ignore_missing_imports = true
[project.scripts]
"cellmap.add_cellpose" = "cellmap_models.pytorch.cellpose:add_model"
"cellmap-export-dacapo" = "cellmap_models.model_export.dacapo_model:cli_export_dacapo_model"