-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 848 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
[project]
name = "cell-eval"
version = "0.7.0"
description = "Evaluation metrics for single-cell perturbation predictions"
readme = "README.md"
authors = [
{ name = "Noam Teyssier", email = "noam.teyssier@arcinstitute.org" },
{ name = "Abhinav Adduri", email = "abhinav.adduri@arcinstitute.org" },
{ name = "Yusuf Roohani", email = "yusuf.roohani@arcinstitute.org" },
]
requires-python = ">=3.11"
dependencies = [
"igraph>=0.11.8",
"pdex>=0.2.0",
"polars>=1.30.0",
"pyyaml>=6.0.2",
"scanpy>=1.10.3",
"pyarrow>=18.0.0",
"tqdm>=4.67.1",
"anndata>=0.12.10",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"pytest>=8.3.5",
"ruff>=0.11.8",
"ty>=0.0.19",
]
[project.scripts]
cell-eval = "cell_eval.__main__:main"