-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.cfg
119 lines (105 loc) · 2.65 KB
/
setup.cfg
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
[metadata]
name = napari-spatialdata
url = https://github.com/scverse/napari-spatialdata.git
author = giovanni palla
author_email = [email protected]
project_urls =
Bug Tracker = https://github.com/scverse/napari-spatialdata/issues
Documentation = https://spatialdata.scverse.org/projects/napari/en/latest/notebooks/spatialdata.html
Source Code = https://github.com/scverse/napari-spatialdata
User Support = https://github.com/scverse/napari-spatialdata/issues
license = BSD-3-Clause
description = Interactive visualization of spatial omics data with napari
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Framework :: napari
Topic :: Software Development :: Testing
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Operating System :: OS Independent
License :: OSI Approved :: BSD License
[options]
packages = find:
include_package_data = True
python_requires = >=3.10
setup_requires = setuptools_scm
# add your package requirements here
install_requires =
anndata
click
cycler
dask>=2024.4.1
geopandas
loguru
matplotlib
napari>=0.4.19.post1
napari-matplotlib
numba
numpy
packaging
pandas
pillow
qtpy
scanpy
scipy
shapely
scikit-learn
spatialdata>=0.2.6
superqt
typing_extensions>=4.8.0
vispy
xarray
xarray-datatree
package_dir =
=src
[options.extras_require]
test =
loguru
pytest
pytest-cov # https://pytest-cov.readthedocs.io/en/latest/
pytest-qt # https://pytest-qt.readthedocs.io/en/latest/
pre-commit>=2.9.0
doc =
sphinx>=4.5
sphinx-book-theme>=1.0.0
myst-parser
sphinxcontrib-bibtex>=1.0.0
sphinx-autodoc-typehints>=1.11.0
sphinx-autobuild
scanpydoc
# For notebooks
ipykernel
ipython
sphinx-copybutton
sphinx-qt-documentation
myst-nb
# used in the notebooks
squidpy
readthedocs =
pydantic<2
# this is just to trigger pip to check for pre-releases as well
pre =
spatialdata>=0.1.0-pre0
all =
napari[pyqt5]
[options.packages.find]
where = src
[options.package_data]
napari_spatiadata = napari.yaml
[options.entry_points]
napari.manifest =
napari-spatialdata = napari_spatialdata:napari.yaml
console_scripts =
spatialdata = napari_spatialdata.__main__:main
[tool:pytest]
python_files = test_*.py
testpaths = tests/
xfail_strict = true
qt_api=pyqt5
; addopts = -n auto