-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 975 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 975 Bytes
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "copykat-py"
version = "1.0.0"
description = "Python implementation of CopyKAT: Copynumber Karyotyping of Aneuploid Tumors from scRNA-seq data"
readme = "README.md"
license = {text = "GPL-2.0"}
requires-python = ">=3.9"
dependencies = [
"numpy>=1.21",
"scipy>=1.7",
"pandas>=1.3",
"anndata>=0.10",
"scikit-learn>=1.0",
"matplotlib>=3.4",
"seaborn>=0.11",
"joblib>=1.1",
"tqdm>=4.62",
"numba>=0.56",
"fastcluster>=1.3.0",
]
[project.optional-dependencies]
large-datasets = ["fastcluster>=1.3.0"]
all = ["fastcluster>=1.3.0"]
[project.scripts]
copykat-py = "copykat_py.cli:main"
copykat_matrix = "copykat_py.cli:matrix_main"
copykat-py-plot = "copykat_py.cli:plot_main"
[tool.setuptools.packages.find]
include = ["copykat_py*"]
[tool.setuptools.package-data]
"copykat_py" = ["data/*.csv", "data/*.mtx", "data/*.txt"]