-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (55 loc) · 1.78 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=61.0.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "spatialleiden"
description = "Implementation of multiplex Leiden for analysis of spatial omics data."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
requires-python = ">=3.10"
dynamic = ["version"]
authors = [
{ name = "Niklas Müller-Bötticher", email = "[email protected]" },
{ name = "Shashwat Sahay", email = "[email protected]" },
]
dependencies = [
"anndata",
"igraph",
"leidenalg~=0.10.2",
"numpy>=1.21",
"scanpy",
"scipy>=1.9",
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"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", "squidpy", "myst-nb"]
dev = ["spatialleiden[docs]", "pre-commit"]
[project.urls]
homepage = "https://github.com/HiDiHlabs/SpatialLeiden"
documentation = "https://spatialleiden.readthedocs.io"
repository = "https://github.com/HiDiHlabs/SpatialLeiden"
[tool]
[tool.setuptools.packages.find]
include = ["spatialleiden"]
[tool.setuptools_scm]
[tool.isort]
profile = "black"
[tool.black]
target-version = ["py310", "py311", "py312"]
[tool.ruff]
target-version = "py310"
[tool.mypy]
ignore_missing_imports = true
warn_no_return = false
packages = "spatialleiden"
[tool.codespell]
ignore-words-list = "coo"