-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
90 lines (79 loc) · 1.5 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
83
84
85
86
87
88
89
90
[project]
name = "panpipes"
version = "0.5.0"
authors = [
{name = "Charlotte Rich-Griffin"},
{name = "Fabiola Curion"}
]
description = "Panpipes - multimodal single cell pipelines"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: R"
]
requires-python = ">= 3.10"
dependencies = [
"jax",
"jaxlib",
"apsw",
"bbknn",
"cgatcore",
"drmaa",
"gevent",
"harmonypy",
"mofapy2",
"muon",
"matplotlib",
"openpyxl",
"paramiko",
"pysam",
"pyyaml",
"ruffus",
"scanorama",
"scanpy",
"seaborn",
"leidenalg",
"louvain",
"scib",
"scib-metrics",
"scikit-misc",
"scirpy",
"scrublet",
"scvi-tools",
"sqlalchemy",
]
[project.optional-dependencies]
dev = [
"packaging",
"pytest",
"twine",
"build"
]
notebook = [
"jupyter",
"jupyterlab"
]
spatial = [
"jax==0.4.23",
"jaxlib==0.4.23",
"scvi-tools==1.0.4",
"scipy==1.12.0",
"squidpy",
"cell2location",
"tangram-sc"
]
refmap_old = [
"scvi-tools",
"pandas<2.0.0",
"scib"
]
[project.scripts]
panpipes = "panpipes:entry.main"
[tool.setuptools]
package-data = {"panpipes" = ["panpipes/*/*.yml", "R_scripts/*.R", "resources/*"]}
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"