-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
70 lines (65 loc) · 1.96 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
65
66
67
68
69
70
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "openst"
version = "0.2.3"
description = "The computational pipeline for the Open-ST method."
license = "GPL-2.0"
authors = [
"Daniel León-Periñán <[email protected]>",
"Nikolaos Karaiskos <[email protected]>",
]
maintainers = [
"Daniel León-Periñán <[email protected]>",
"Nikolaos Karaiskos <[email protected]>",
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
]
[tool.poetry.dependencies]
python = ">3.8,<3.12"
anndata = ">=0.7.4"
numpy = ">=1.17.0"
matplotlib = ">=3.4"
pandas = ">=1.0"
scipy = ">=1.4"
h5py = ">=3"
tqdm = "*"
scikit-learn = ">=0.24"
natsort = "*"
joblib = "*"
dask = { version = "*", extras = ["array"] }
dask-image = "*"
kornia = ">=0.7.0"
scikit-image = "==0.19.3"
opencv-python = ">=4.8.0.76"
cellpose = ">=2.2.3"
pyqt5 = "==5.15.9"
pyqt5-qt5 = "==5.15.2"
pyqt5-sip = "==12.12.2"
ome-zarr = ">=0.8.2"
pyqtgraph = ">=0.13.3"
dnaio = ">=1.2.0"
[tool.poetry.urls]
"Documentation" = "https://rajewsky-lab.github.io/openst/"
"Source" = "https://github.com/rajewsky-lab/openst"
"Home-page" = "https://rajewsky-lab.github.io/openst"
"Twitter" = "https://twitter.com/open_sts"
[tool.poetry.scripts]
openst = 'openst.__main__:run_openst'