-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
49 lines (42 loc) · 1.18 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
[tool.poetry]
name = "lacss"
version = "0.0.0"
description = "Tools for cell segmentation"
authors = ["Ji Yu <jyu@uchc.edu>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "<2.0"
typer = "^0.12.3"
imageio = "^2.9.0"
scikit-image = ">=0.19.0"
imagecodecs = "^2023.3.16"
opencv-python = "^4.8.1.78"
tqdm = "^4.65.0"
grpcio = "^1.66"
flax = ">0.10"
ml-collections = { version = "^0.1.1", optional = true }
tensorflow = { version = "^2.16.1", optional = true }
xtrain = { version = "^0.4", optional = true }
jax = { version = "^0.4", extras = ["cuda12"], optional = true }
biopb = "^0.1.0"
[tool.poetry.extras]
train = [ "jax", "ml-collections", "tensorflow", "xtrain" ]
cuda12 = [ "jax" ]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
grpcio-tools = "^1.66"
jupyterlab = "^3.6.1"
matplotlib = "^3.8.4"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.2.3"
mkdocstrings = {extras = ["python"], version = "^0.22.0"}
mkdocs-gen-files = "^0.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
exclude = ["**/__pycache__/**", "**/runs/**", ".venv/"]