-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.15 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "spatialdata_notebooks"
version = "0.0.1"
description = "Tutorials and examples for SpatialData"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "scverse"},
]
maintainers = [
{name = "scverse", email = "core@scverse.org"},
]
urls.Documentation = "https://spatialdata-notebooks.readthedocs.io/"
urls.Source = "https://github.com/scverse/spatialdata-notebooks"
urls.Home-page = "https://github.com/scverse/spatialdata-notebooks"
dependencies = ["spatialdata", "squidpy>=1.6.2"]
[project.optional-dependencies]
dev = [
"pre-commit",
"watermark"
]
doc = [
"sphinx>=4.5",
"sphinx-book-theme>=0.3.3",
"myst-nb",
"sphinxcontrib-bibtex>=1.0.0",
"sphinx-autodoc-typehints",
"sphinx-design",
# For notebooks
"ipython>=8.6.0",
"sphinx-copybutton",
]
[tool.ruff]
line-length = 120
exclude = ["notebooks/developers_resources/storage_format/__template__.ipynb"]
[tool.ruff.lint]
ignore = ["E402", "F821"]
[tool.jupytext]
formats = "ipynb,md"
[tool.hatch.build.targets.wheel]
packages = ["notebooks"]