-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (90 loc) · 2.67 KB
/
Copy pathpyproject.toml
File metadata and controls
96 lines (90 loc) · 2.67 KB
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
91
92
93
94
95
96
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "monocle3-python"
version = "1.4.26.post1"
description = "Python port of the R monocle3 package (tracks cole-trapnell-lab/monocle3 1.4.26 @ 4f4239a) — AnnData-based single-cell trajectory, clustering, and differential expression."
readme = "README.md"
requires-python = ">=3.10"
license = "Artistic-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Jeffery Liu", email = "jeffliu.lucky@gmail.com" },
]
keywords = [
"monocle3",
"monocle",
"single-cell",
"scRNA-seq",
"trajectory",
"pseudotime",
"clustering",
"differential-expression",
"graph-test",
"R-port",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.11",
"pandas>=2.0",
"anndata>=0.10",
"scikit-learn>=1.3",
"statsmodels>=0.14",
"patsy>=0.5",
"python-igraph>=0.10",
"leidenalg>=0.10",
"umap-learn>=0.5",
"openTSNE>=1.0",
"pynndescent>=0.5",
"hnswlib>=0.8",
"annoy>=1.17",
"plotly>=5.0",
"ggplot2-python>=4.0.2.9000",
"ggrepel-python>=0.9.8",
"pheatmap-python>=1.0.13",
"scales-python>=1.4.0",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "ruff", "build", "twine"]
docs = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
"mkdocs-jupyter",
]
[project.urls]
Homepage = "https://github.com/Bio-Babel/Monocle3-python"
Repository = "https://github.com/Bio-Babel/Monocle3-python"
Issues = "https://github.com/Bio-Babel/Monocle3-python/issues"
Documentation = "https://github.com/Bio-Babel/Monocle3-python#readme"
"Upstream (R package)" = "https://github.com/cole-trapnell-lab/monocle3"
"Tutorial data (Zenodo)" = "https://zenodo.org/records/19712460"
[tool.hatch.build.targets.wheel]
packages = ["monocle3"]
[tool.hatch.build.targets.sdist]
exclude = [
"tutorials/",
"docs/",
"tests/",
"mkdocs.yml",
]
[tool.pytest.ini_options]
testpaths = ["tests"]