-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
82 lines (74 loc) · 1.87 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
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "ncem"
version = "0.1.5" # <<COOKIETEMPLE_FORCE_BUMP>>
description = "ncem. Learning cell communication from spatial graphs of cells."
authors = ["Anna C. Schaar <[email protected]>"]
license = "BSD"
readme = "README.rst"
homepage = "https://github.com/theislab/ncem"
repository = "https://github.com/theislab/ncem"
documentation = "https://ncem.readthedocs.io"
packages = [
{ include = "ncem" },
]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = ">=3.8,<=3.10"
click = "^8.0.0"
rich = "^10.1.0"
PyYAML = "^5.4.1"
Jinja2 = ">=2.11.3,<4.0.0"
scanpy = "^1.9.3"
squidpy = "^1.2.3"
patsy = "^0.5.1"
scipy = "=1.9.1"
seaborn = "^0.12.2"
matplotlib = "^3.7.1"
louvain = "^0.7.0"
diffxpy = "^0.7.4"
docrep = "^0.3.2"
tensorflow = "^2.11.1"
joblib = "^1.2.0"
numpy = ">=1.22"
[tool.poetry.dev-dependencies]
pytest = "^6.2.3"
coverage = {extras = ["toml"], version = "^5.3"}
safety = "^2.3.0"
mypy = "^0.812"
typeguard = "^2.12.0"
xdoctest = {extras = ["colors"], version = "^0.15.0"}
sphinx = "^3.5.4"
sphinx-autobuild = "^2021.3.14"
pre-commit = "^2.21.0"
flake8 = "=4.0.1"
black = "=22.3.0"
bandit="=1.7.2"
flake8-bandit = ">=2.1.2"
flake8-bugbear = "^21.4.3"
flake8-docstrings = "^1.5.0"
flake8-rst-docstrings = "^0.2.3"
pep8-naming = "^0.13.2"
darglint = "^1.5.8"
reorder-python-imports = "^2.5.0"
pre-commit-hooks = "^4.4.0"
sphinx-rtd-theme = "^0.5.0"
sphinx-click = "^2.5.0"
Pygments = "^2.11.2"
[tool.poetry.scripts]
ncem = "ncem.__main__:main"
[tool.black]
line-length = 120
[tool.coverage.paths]
source = ["ncem", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["ncem"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"