-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (60 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
75 lines (60 loc) · 2.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
[build-system]
requires = ["setuptools>=77.0.3", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "spatialleiden"
description = "Implementation of multiplex Leiden for analysis of (multimodal) spatial omics data."
readme = { file = "README.md", content-type = "text/markdown" }
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dynamic = ["version"]
authors = [
{ name = "Niklas Müller-Bötticher", email = "niklas.mueller-boetticher@charite.de" },
{ name = "Shashwat Sahay", email = "shashwatsahay.rsg@gmail.com" },
]
dependencies = ["igraph", "leidenalg >=0.10.2, <0.12", "numpy>=1.21", "scipy>=1.9"]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Typing :: Typed",
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-copybutton",
"sphinx-rtd-theme",
"anndata>=0.10",
"scanpy",
"squidpy",
"dask<2025", # incompatibility of squidpy with dask >= 2025
"myst-nb",
]
dev = ["spatialleiden[docs]", "mudata~=0.3", "pre-commit"]
[project.urls]
Homepage = "https://github.com/HiDiHlabs/SpatialLeiden"
Documentation = "https://spatialleiden.readthedocs.io"
Repository = "https://github.com/HiDiHlabs/SpatialLeiden"
Issues = "https://github.com/HiDiHlabs/SpatialLeiden/issues"
[tool]
[tool.setuptools.packages.find]
include = ["spatialleiden"]
[tool.setuptools_scm]
[tool.ruff]
target-version = "py310"
fix = true
show-fixes = true
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
warn_no_return = false
packages = "spatialleiden"
plugins = "numpy.typing.mypy_plugin"
[tool.codespell]
ignore-words-list = "coo"