-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.39 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "cellmap-flow"
description = "Realtime prediction using neuroglancer"
readme = "README.md"
requires-python = ">=3.10"
version = "0.1.3"
license = { text = "BSD 3-Clause License" }
authors = [
{ email = "[email protected]", name = "David Ackerman" },
{ email = "[email protected]", name = "Marwan Zouinkhi"},
]
dependencies = [
"numpy",
# "PyYAML",
"gunicorn",
"flask",
"flask-cors",
"tensorstore",
"daisy",
"marshmallow",
"scikit-image",
"flasgger",
"numcodecs",
"zarr==2.18.4",
"h5py",
"torch",
"universal_pathlib",
"neuroglancer",
]
# extras
# https://peps.python.org/pep-0621/#dependencies-optional-dependencies
[project.optional-dependencies]
dacapo = ["dacapo-ml"]
bioimageio = ["bioimageio.core[onnx,pytorch]==0.6.1"]
test = ["pytest", "pytest-cov", "pytest-lazy-fixtures"]
dev = [
"black",
"mypy",
"pdbpp",
"rich",
"ruff",
"pre-commit",
]
docs = [
"sphinx-autodoc-typehints",
"sphinx-autoapi",
"sphinx-click",
"sphinx-rtd-theme",
"myst-parser",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["ignore"]
[project.scripts]
cellmap_flow = "cellmap_flow.cli.cli:cli"
cellmap_flow_server = "cellmap_flow.cli.server_cli:cli"
cellmap_flow_multiple = "cellmap_flow.cli.multiple_cli:main"