-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (49 loc) · 1.36 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
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
[project]
name = "arc-state"
version = "0.10.5"
description = "State is a machine learning model that predicts cellular perturbation response across diverse contexts."
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 = "Rajesh Ilango", email = "rilango@gmail.com" },
{ name = "Dhruv Gautam", email = "dhruvgautam@berkeley.edu" },
]
requires-python = ">=3.10,<3.13"
dependencies = [
"anndata>=0.11.4",
"cell-load>=0.10.3",
"numpy>=2.2.6",
"pandas>=2.2.3",
"pyyaml>=6.0.2",
"scanpy>=1.11.2",
"scikit-learn>=1.6.1",
"seaborn>=0.13.2",
"torch>=2.7.0",
"tqdm>=4.67.1",
"wandb>=0.19.11",
"hydra-core>=1.3.2",
"geomloss>=0.2.6",
"transformers>=4.52.3",
"peft>=0.11.0",
"cell-eval>=0.7.0",
"ipykernel>=6.30.1",
"scipy>=1.15.0",
]
[project.optional-dependencies]
vectordb = [
"lancedb>=0.24.0"
]
[dependency-groups]
dev = ["ruff>=0.11.11", "vulture>=2.14", "ipython>=8.37.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
state = "state.__main__:main"
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.hatch.build.targets.wheel]
packages = ["src/state"]