-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.34 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scSAGA"
version = "0.1.0"
description = "Single-cell SAmpled Gromov-Wasserstein Alignment framework for multimodal RNA-seq and ATAC-seq integration"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [
{ name = "Swethasree Bhattaram" }
]
keywords = ["single-cell", "ATAC-seq", "RNA-seq", "optimal transport", "multimodal"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"numpy",
"pandas",
"scipy",
"scikit-learn",
"pyyaml",
"plotly",
"pot",
"torch",
"pydantic",
"joblib",
"matplotlib",
"anndata",
"geosketch",
"scanpy",
"scib",
]
[project.optional-dependencies]
dev = [
"basedpyright",
"jupyter",
"memory_profiler",
"devtools",
]
[project.scripts]
scsaga = "scmint.cli:main"
[project.urls]
Homepage = "https://github.com/Swethasree-Bhattaram/scSAGA"
Repository = "https://github.com/Swethasree-Bhattaram/scSAGA"
[tool.setuptools.packages.find]
where = ["."]
include = ["scmint*"]
[tool.setuptools.package-data]
scmint = ["*.yml", "*.yaml", "*.json"]