-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
129 lines (119 loc) · 3.01 KB
/
setup.cfg
File metadata and controls
129 lines (119 loc) · 3.01 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[metadata]
name = sparrow
author = dambi
version = 0.0.1
description = Napari plugin for spatial transcriptomics data analysis
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/saeyslab/napari-sparrow
license = BSD-3-Clause
license_file = LICENSE
license_files = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Framework :: napari
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Testing
project_urls =
Bug Tracker = https://github.com/saeyslab/napari-sparrow/issues
Documentation = https://github.com/saeyslab/napari-sparrow#README.md
Source Code = https://github.com/saeyslab/napari-sparrow
User Support = https://github.com/saeyslab/napari-sparrow/issues
[options]
packages = find:
install_requires =
spatialdata>=0.4.0
dask[distributed]>=2024.4.1,<=2024.11.2
dask_image==2022.9.*
spatialdata-io >= 0.1.6
tifffile==2023.8.*
ome-zarr==0.11.*
shapely==2.0.*
squidpy
scanpy>=1.9.1
voronoi-diagram-for-polygons==0.1.6
rasterio>=1.3.2
seaborn>=0.12.2
leidenalg>=0.9.1
geopandas>=1.0.1
omegaconf==2.3.0
numpy < 2.0.0
scipy == 1.11.*
xarray_dataclasses>=1.9.1
xarray == 2024.11.*
imageio==2.27.*
scikit-image==0.21.*
pyarrow<=21.0.0 # latest pyarrow breaks spatialdata: https://github.com/scverse/spatialdata/issues/1000
nptyping
magicgui
pyrootutils
universal_pathlib
datasets
crick
python_requires = >=3.8
include_package_data = True
package_dir =
=src
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
sparrow = sparrow.single:main
napari.manifest =
sparrow = sparrow:napari.yaml
[options.extras_require]
plugin =
napari[all]>=0.4.18
hydra-core>=1.2.0
hydra-colorlog>=1.2.0
napari-spatialdata>=0.2.6
cellpose>=2.2.3,<4.0
pytest-qt
testing =
hydra-core>=1.2.0
hydra-colorlog>=1.2.0
cellpose>=2.2.3,<4.0
datasets
jax>=0.4.6,<=0.4.23
jaxlib>=0.4.6,<=0.4.23
basicpy==1.0.0
opencv-python
pytest
pytest-cov
tox
nbconvert
tiling =
jax>=0.4.6,<=0.4.23
jaxlib>=0.4.6,<=0.4.23
basicpy==1.0.0
cli =
hydra-core>=1.2.0
hydra-colorlog>=1.2.0
submitit>=1.4.5
hydra-submitit-launcher>=1.2.0
docs =
sphinx>=4.5
sphinx-book-theme>=1.0.0
sphinx_rtd_theme
myst-nb
sphinxcontrib-bibtex>=1.0.0
sphinx-autodoc-typehints
sphinx-design
# For notebooks
ipython>=8.6.0
sphinx-copybutton
[options.package_data]
sparrow = configs/**/*.yaml
[flake8]
max-line-length = 88
select = C,E,F,W,B,B950
extend-ignore = E203, E501