-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (36 loc) · 1.03 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
[tool.poetry]
name = "echidna-sc"
version = "1.0.0"
description = "Mapping genotype to phenotype through joint probabilistic modeling of single-cell gene expression and chromosomal copy number variation."
packages = [{include = "echidna", from="."}]
authors = [
"Joy Linyue Fan <[email protected]>",
"Mingxuan Zhang <[email protected]>",
"William O'Brien <[email protected]>",
"Joshua Myers <[email protected]>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/azizilab/echidna"
repository = "https://github.com/azizilab/echidna"
keywords = ["scRNA", "wgs", "cnv"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.10"
scanpy = ">=1.10"
numpy = ">=1.21"
pandas = "*"
seaborn = "*"
hmmlearn = "*"
pyro-ppl = ">=1.9.1"
graphviz = "*"
requests = "*"
scikit-learn = "*"
leidenalg = "*"
[build-system]
requires = ["poetry>=1.1.0"]
build-backend = "poetry.core.masonry.api"