forked from velocyto-team/velocyto.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (58 loc) · 1.3 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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "velocyto"
version = "0.44.0"
authors = [
{name = "Linnarsson Lab", email = "sten.linnarsson@ki.se"},
]
description = "RNA velocity analysis for single cell RNA-seq data"
readme = "README.md"
keywords = [
"RNAseq",
"singlecell",
"bioinformatics",
"transcriptomics",
]
license = {text = "BSD-2-Clause"}
requires-python = "<3.11,>=3.10"
dependencies = [
"numba>=0.60.0",
"numpy>=2.0.0",
"scipy>=1.14.0",
"cython>=3.0.10",
"matplotlib>=3.9.1",
"h5py>=3.11.0",
"loompy>=3.0.7",
"pysam>=0.22.1",
"pandas>=2.2.2",
"scikit-learn>=1.5.1",
"rpy2>=3.5.16",
"typer>=0.12.3",
"loguru>=0.7.2",
"rich>=13.7.1",
"tqdm>=4.66.4",
"anndata>=0.10.8",
]
[project.optional-dependencies]
R = [
"rpy2>=3.5.16",
]
[project.urls]
homepage = "https://github.com/velocyto-team/velocyto.py"
repository = "https://github.com/velocyto-team/velocyto.py"
documentation = "http://velocyto.org/velocyto.py/index.html"
[project.scripts]
velocyto = "velocyto.commands.cli:velocyto"
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"memray>=1.13.3",
"memory-profiler>=0.61.0",
"nox>=2024.4.15",
"ruff>=0.5.1",
"mypy>=1.10.1",
"pytest>=8.2.2",
]
build = ["build.py"]