File size: 1,979 Bytes
6bb36f2 |
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
[tool.poetry]
name = "scprint"
version = "0.1.0"
license = "MIT"
description = ""
authors = ["jeremie kalfon"]
readme = ["README.md", "LICENSE"]
repository = "https://github.com/jkobject/scPrint"
keywords = [
"scRNAseq",
"transformer",
"GRN",
"gene regulatory network",
"scPrint",
]
[tool.poetry.dependencies]
lamindb = "*"
python = "3.10"
cellxgene-census = "*"
torch = ">=2.0.0"
anndata = "*"
matplotlib = "*"
seaborn = "*"
gseapy = "*"
ipykernel = "*"
owlready2 = "*"
torchdata = "*"
biomart = "*"
scib = "*"
scikit-learn = "*"
scipy = "*"
pandas = ">=2.0.0"
numpy = "*"
leidenalg = "*"
decoupler = "*"
Bio = "*"
attridict = "*"
gget = "*"
torchvision = "*"
fair-esm = { git = "https://github.com/facebookresearch/esm.git", branch = "main" }
hydra-core = "*"
lightning = "*"
#torchtext = "*"
#transformers = "*"
pynndescent = ">=0.5.11"
scDataLoader = "*"
einops = "*"
rich = "*"
typeshed-client = "*"
tensorboardX = "*"
jsonargparse = "*"
docstring-parser = "*"
lnschema-bionty = "*"
bionty = "*"
wandb = "*"
wandb-core = "*"
pykeops = "*"
louvain = "*"
hdbscan = "*"
scib-metrics = "*"
scikit-misc = "*"
zarr = "*"
galore-torch = { git = "https://github.com/jiaweizzhao/GaLore", branch = "master" }
tensorly = "*3
[tool.poetry.group.flashattention.dependencies]
# C_INCLUDE_PATH=$CONDA_HOME/envs/scprint/include
torchtext = "0.15.1"
triton = "2.0.0.dev20221202" #no deps
torch = "2.0.0"
torchvision = "0.15.0"
torchaudio = "2.0.0"
pytorch-fast-transformers = "*"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
coverage = "^7.3.2"
flake8 = "^6.1.0"
black = "^23.10.1"
isort = "^5.12.0"
pytest-cov = "^4.1.0"
mypy = "^1.6.1"
gitchangelog = "^3.0.4"
mkdocs = "^1.5.3"
mkdocs-git-revision-date-localized-plugin = "*"
mkdocstrings = "*"
mkdocs-git-authors-plugin = "*"
mkdocs-jupyter = "*"
mkdocstrings-python = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
scprint = 'scprint.__main__:main'
|