-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 1.05 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
[project]
name = "cell-load"
version = "0.10.3"
description = "Dataloaders for training models on huge single-cell datasets"
readme = "README.md"
authors = [
{ name = "Abhinav Adduri", email = "abhinav.adduri@arcinstitute.org" },
{ name = "Yusuf Roohani", email = "yusuf.roohani@arcinstitute.org" },
{ name = "Noam Teyssier", email = "noam.teyssier@arcinstitute.org" },
{ name = "Rishi Verma", email = "rishi.verma@arcinstitute.org" },
{ name = "Francis Chalissery", email = "francis.chalissery@arcinstitute.org" },
{ name = "Beatrice Bevilacqua", email = "beatrice.bevilacqua@arcinstitute.org" },
]
requires-python = ">=3.10,<3.13"
dependencies = ["torch>=1.13.0", "anndata>=0.9.1", "lightning>=2.0.0", "toml>=0.10.2", "scanpy>=1.9.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = ["pytest>=8.3.5", "ruff>=0.11.8"]
[project.scripts]
run_eval = "cell_load.__main__:main"
filter_on_target_knockdown = "cell_load._cli.filter_on_target_knockdown:main"
[tool.pyright]
venvPath = "."
venv = ".venv"