-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 1.14 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
[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.7"
classifiers = [
"Programming Language :: Python :: 3",
]
keywords = ["machine learning", "deep learning", "cell segmentation", "cellpose", "cellmap"]
license = { text = "BSD 3-Clause License" }
authors = [
{ email = "[email protected]", name = "Jeff Rhoades" },
]
version = "0.1.0"
dependencies = [
'torch',
'torchvision',
'numpy',
'tqdm',
'cellpose',
'ml-collections',
]
[project.optional-dependencies]
dev = [
'pytest',
'pytest-cov',
'pytest-mock',
'black',
'mypy',
'pdoc',
'pre-commit',
]
pretrained = ['cellpose[gui]']
all = ["cellmap-models[dev,pretrained]"]
[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"