-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.34 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
[tool.poetry]
name = "alibylite"
version = "0.0.1"
description = "Process and analyse live-cell imaging data"
authors = ["Alan Munoz", "Peter Swain <[email protected]>"]
packages = [
{ include = "aliby", from="src" },
{ include = "extraction", from="src" },
{ include = "agora", from="src" },
{ include = "postprocessor", from="src" },
{ include = "logfile_parser", from="src" },
]
readme = "README.md"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.8, <3.11"
numpy = ">=1.21.6"
pandas = ">=2.0.3"
scikit-learn = ">=1.0.2, <1.3"
scipy = ">=1.7.3"
scikit-image = ">=0.18.1"
bottleneck = ">=1.3.5"
dask = ">=2021.12.0"
flatten-dict = ">=0.4.2"
h5py = ">=3.8.0"
more-itertools = ">=10.2.0"
pathos = ">=0.2.8"
pyyaml = ">=5.3.1"
py-find-1st = ">=1.1.6"
tqdm = ">=4.62.3"
xmltodict = ">=0.13.0"
zarr = ">=2.14.0"
tensorflow = "2.13.1"
baby-seg = ">=0.30.4"
omero-py = { version = ">=5.6.2", optional = true }
cellpose = "^3.0.9"
polars = "^0.20.31"
seaborn = "^0.13.2"
pyarrow = "^15.0.1"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
jupytext = "^1.15.2"
ipdb = "^0.13.13"
ruff = ">=0.3.2"
ruff-lsp = ">=0.0.52"
[tool.poetry.extras]
omero = ["omero-py"]
# cellpose = ["cellpose"]
# baby = ["baby-seg"]
[tool.black]
line-length = 79