forked from nirmallab/cspot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (35 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
[tool.poetry]
name = "cspot"
version = "1.0.6"
description = "CELL SPOTTER (CSPOT): A scalable framework for automated processing of highly multiplexed tissue images"
authors = ["Ajit Johnson Nirmal <[email protected]>"]
readme = "README.md"
keywords = ["image analysis","multiplex imaging","single cell analysis"]
homepage = "https://pypi.org/project/cspot/"
documentation = "https://nirmallab.github.io/cspot/"
repository = "https://github.com/nirmallab/cspot"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python"]
exclude = ["docs"]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
numpy = "^1.23.2"
pandas = "^1.4.4"
tifffile = "^2022.8.12"
pathlib = "^1.0.1"
dask = "^2022.8.1"
zarr = "^2.12.0"
tensorflow = "2.13.0rc1"
opencv-python = "^4.6.0.66"
anndata = "^0.8.0"
scikit-learn = "^1.2.1"
argparse = "^1.4.0"
scikit-image = "^0.19.3"
Brotli = "^1.0.9"
matplotlib = "^3.7.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"