-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
63 lines (59 loc) · 1.97 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
[tool.poetry]
name = "liana"
version = "1.4.0"
description = "LIANA+: a one-stop-shop framework for cell-cell communication"
authors = ["Daniel Dimitrov <[email protected]>"]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Natural Language :: English",
]
license = "GPLv3"
readme = "README.md"
repository = "https://github.com/saezlab/liana-py"
homepage = "https://liana-py.readthedocs.io"
include = ["LICENSE"]
[tool.poetry.dependencies]
python = ">=3.8 <3.12"
anndata = ">=0.7.4"
mudata = "*"
scanpy = ">=1.8.0"
numba = ">=0.54.0"
plotnine = ">=0.10.0"
tqdm = "^4.0"
omnipath = {version = ">=1.0.6", optional = true}
decoupler = {version = ">=1.4.0", optional = true}
pydeseq2 = {version = ">=0.3.5", optional = true}
cell2cell = {version = "*", optional = true}
muon = {version = "*", optional = true}
mofax = {version = "*", optional = true}
mofapy2 = {version = ">=0.7.0", optional = true}
corneto = {version = "0.9.1-alpha.5", optional = true}
cvxpy = {version = ">=1.4,<1.5.0", optional = true}
cylp = {version = "^0.91.5", optional = true}
pre-commit = {version = ">=3.0.0", optional = true}
requests = {version = "^2.25.1", optional = true}
docrep = ">=0.3.1"
[tool.poetry.dev-dependencies]
pytest = ">=6.0"
pytest-cov = "*"
flake8 = "*"
sphinx = "^4.0"
nbsphinx = "^0.8"
sphinx_automodapi = "^0.14"
ipython = "^7.0"
ipykernel = "^6.0"
pandoc = "^1.0"
numpydoc = "^1.1"
bumpversion = "^0.6.0"
[tool.poetry.extras]
common = ["decoupler", "omnipath", "requests"]
full = ["decoupler", "omnipath", "pydeseq2", "cell2cell", "muon", "mofax", "mofapy2", "corneto", "cvxpy", "cylp", "requests"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"