-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (58 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (58 loc) · 1.81 KB
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
[project]
name = "insitupy-spatial"
version = "0.11.4"
description = "Package introducing the InSituPy framework to analyze single-cell spatial transcriptomics data."
license = {text = "BSD-3-Clause"}
authors = [
{name = "Johannes Wirth", email = "jwrth <j.wirth@tum.de>"}
]
requires-python = ">=3.10.0"
readme = "README.md"
dependencies = [
"scanpy[leiden] (>=1.10.3,<2.0.0)",
"numpy (>=2.1.3,<3.0.0)",
"dask>=2025.3.0",
"dask-image>=2023.8.1",
# starting from 0.6.3 there are some issues with adding annotations in napari
# See: https://github.com/napari/napari/issues/8273
# Is supposed to be fixed in 0.7.0: https://github.com/napari/napari/pull/8414
"napari[all] (>=0.5.6,<0.6.3)",
"parse>=1.19.1",
"opencv-python>=4.8.0.76",
"scikit-image (>=0.21.0,<1.0.0)",
"geopandas>=1.0.1",
# "fiona>=1.10.1",
"openpyxl (>=3.1.2,<4.0.0)",
"xmltodict>=0.13.0",
"zarr (>=3.0.0,<4.0.0)",
"pyarrow (>=14.0.1,<=21.0.0)", # 22.0.0 causes issues reading cell.parquet
"fastparquet>=2023.10.1",
"toml (>=0.10.2,<1.0.0)",
"plottable==0.1.5",
"adjusttext (>=1.3.0,<2.0.0)",
"scikit-misc>=0.3.1",
"dask-geopandas>=0.4.2",
"imagecodecs>=2024.12.30",
"rasterio>=1.4.3",
"requests",
"decoupler (>=2.1.1,<3.0.0)",
# security patches
"tornado>=6.5.0",
"urllib3>=2.6.0" # https://github.com/SpatialPathology/InSituPy/security/dependabot/31
]
[project.optional-dependencies]
dev = ["pytest>=7.4.2"]
spatialdata = [
"spatialdata[extra]>=0.7.2",
"spatialdata-io"
]
[tool.poetry]
packages =[
{ include = 'insitupy' }
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry_bumpversion.file."insitupy/__init__.py"]
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'