-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
76 lines (71 loc) · 1.59 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
[build-system]
build-backend = "pdm.backend"
requires = [
"pdm-backend",
]
[tool.black]
exclude = "/(\n \\.eggs\n | \\.git\n | \\.hg\n | \\.mypy_cache\n | \\.nox\n | \\.tox\n | \\.venv\n | _build\n | buck-out\n | build\n | dist\n)/\n"
include = "\\.pyi?$"
[tool.pdm.build]
excludes = [
"contrib",
]
package-dir = "src"
[project]
authors = [
{ name = "Joshua Welch", email = "[email protected]" },
{ name = "Lu Lu", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"adjustText",
"anndata",
"annoy",
"bokeh",
"colorcet",
"datashader",
"goatools",
"h5sparse",
"holoviews",
"leidenalg",
"llvmlite",
"louvain",
"matplotlib",
"mygene",
"numexpr",
"numba",
"numpy",
"pandas",
"plotnine",
"python-igraph",
"scikit-learn",
"scipy",
"seaborn",
"umap-learn",
"setuptools>=68.0.0",
"dask>=2024.4.1",
"dask-expr>=1.1.0",
"lazy-loader>=0.4",
]
description = "The Python version of LIGER package."
keywords = [
"LIGER",
]
maintainers = [
{ name = "Andrew Robbins", email = "[email protected]" },
]
name = "pyliger"
readme = "README.md"
requires-python = "<3.13, >=3.9"
version = "0.2.3"
[project.license]
text = "GPL-3.0-only"
[project.urls]
homepage = "https://welch-lab.github.io"
repository = "https://github.com/welch-lab/pyliger"