forked from bowang-lab/scGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (37 loc) · 938 Bytes
/
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
[tool.poetry]
name = "scGPT"
version = "0.2.1"
description = "Large-scale generative pretrain of single cell using transformer."
license = "MIT"
authors = ["Haotian <[email protected]>"]
repository = "https://github.com/bowang-lab/scGPT"
homepage = "https://github.com/bowang-lab/scGPT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.7.12,<3.11"
pandas = ">=1.3.5"
scvi-tools = ">=0.16.0,<1.0"
scanpy = "^1.9.1"
torch = ">=1.13.0"
torchtext = "*"
numba = ">=0.55.1"
scikit-misc = ">=0.1.4"
umap-learn = ">=0.5.3"
leidenalg = ">=0.8.10"
datasets = "^2.3.0"
typing-extensions = "^4.2.0"
scib = "^1.0.3"
cell-gears = "<0.0.3"
orbax = "<0.1.8"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^22.3.0"
tensorflow = "^2.8.0"
flash-attn = "^1.0.1"
torch-geometric = "^2.3.0"
dcor = "~0.5.3"
wandb = "^0.12.3"
plotly = "^5.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"