-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (61 loc) · 1.69 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
63
64
65
66
67
68
69
[project]
name = "spatialproteomics"
version = "0.8.6"
description = "Spatialproteomics is an interoperable toolbox for analyzing highly multiplexed fluorescence image data"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name="Matthias Meyer-Bender"},
{name="Harald Vohringer"}
]
dependencies = [
"cffi>=1.15.0",
"xarray>=2024.0.0",
"scikit-image>=0.25",
"matplotlib>=3.8.0",
"tqdm>=4.64.0",
"scikit-learn>=1.4.2",
"zarr", # note that if you use spatialdata, you should use zarr>=3.0.0
"numpy>=1.23",
"opencv-python>=4.11.0",
"pyyaml>=6.0"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["spatialproteomics*"]
[project.optional-dependencies]
docs = [
"Sphinx>=7.0.0",
"sphinx-book-theme>=0.0.39",
"sphinxcontrib-napoleon==0.7",
"nbsphinx>=0.9",
"sphinx-multiversion>=0.2.4",
"IPython>=8.0.0",
]
spatialdata = ["spatialdata>=0.4.0"]
cellpose = ["cellpose>=3.1.0"]
stardist = ["stardist>=0.9.1"]
anndata = ["anndata"]
astir = ["astir>=0.1.5"]
spotiflow = ["spotiflow"]
dev = [
"pytest>=7.1.2",
"pytest-cov>=3.0.0",
"black[jupyter]>=22.6.0",
"isort>=5.10.1",
"flake8>=5.0.4",
"bandit>=1.7.4",
"safety>=2.1.1",
"typing_extensions>=4.16", # to avoid anndata issues
]
all = ["spatialdata", "cellpose", "stardist", "astir"]
[build-system]
requires = ["setuptools>=61.0,<81.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
exclude = '/(\.venv|build|dist|data|.*\.tif|.*\.tiff|.*\.h5|.*\.zarr)/'
[tool.isort]
profile = "black"
skip = ["data", "build", "dist"]
skip_glob = [".venv/*", "*.tif", "*.tiff", "*.h5", "*.zarr", ".venv", "build", "dist", "data", ".git", "__pycache__"]