forked from ventolab/CellphoneDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (51 loc) · 1.42 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
[tool.isort]
include_trailing_comma = true
multi_line_output = 3
profile = "black"
[tool.poetry]
authors = ["The CellPhoneDB development team <[email protected]>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
description = "Inferring cell-cell communication."
documentation = "https://github.com/ventolab/cellphonedb"
homepage = "https://github.com/ventolab/cellphonedb"
license = "MIT License"
name = "cellphonedb"
packages = [
{include = "cellphonedb"},
]
readme = "README.md"
version = "5.0.0"
exclude = ["example_data*"]
[tool.poetry.dependencies]
python = ">=3.8"
black = {version = ">=22.3", optional = true}
isort = {version = ">=5.7", optional = true}
pandas = ">=1.5.0"
scanpy = ">=1.9.1"
numpy = ">=1.21.6"
numpy-groupies = ">=0.9.15"
requests = ">=2.25.0"
scikit-learn = ">=1.2.2"
geosketch = ">=1.2"
anndata = ">=0.8"
ktplotspy = ">=0.1.4"
tqdm = ">=4.3,<5.0"
pytest = ">=7.2.0"
[tool.poetry.extras]
dev = ["black", "isort"]
[build-system]
requires = [
"poetry-core>=1.0.0",
]
build-backend = "poetry.core.masonry.api"