-
Notifications
You must be signed in to change notification settings - Fork 56
/
pyproject.toml
77 lines (73 loc) · 1.95 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
[build-system]
requires = ["setuptools", "wheel", "flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "scglue"
version = "0.3.2"
description = "Graph-linked unified embedding for unpaired single-cell multi-omics data integration"
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE"}
authors = [
{name = "Zhi-Jie Cao", email = "caozj@mail.cbi.pku.edu.cn"},
{name = "Xin-Ming Tu", email = "xinmingtu@pku.edu.cn"}
]
keywords = ["bioinformatics", "deep-learning", "single-cell", "single-cell-multiomics"]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = [
"numpy>=1.19",
"scipy>=1.3",
"pandas>=1.1",
"matplotlib>=3.1.2",
"seaborn>=0.9",
"dill>=0.2.3",
"tqdm>=4.27",
"scikit-learn>=0.21.2",
"statsmodels>=0.10",
"parse>=1.3.2",
"networkx>=2",
"pynvml>=8.0.1",
"torch>=1.8",
"pytorch-ignite>=0.4.1",
"tensorboardX>=1.4",
"anndata>=0.7",
"scanpy>=1.5",
"pybedtools>=0.8.1",
"h5py>=2.10",
"sparse>=0.3.1",
"packaging>=16.8",
"leidenalg>=0.7"
]
[project.optional-dependencies]
doc = [
"sphinx<7",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-intl",
"nbsphinx",
"sphinx-rtd-theme",
"ipython",
"jinja2"
]
test = [
"plotly",
"pytest",
"pytest-cov"
]
[project.urls]
Github = "https://github.com/gao-lab/GLUE"
[tool.flit.sdist]
exclude = [".*", "c*", "d*", "e*", "pa*", "t*", "T*"]