-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 770 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (27 loc) · 770 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "specflow"
version = "0.1.0"
description = "Spectral-guided control-anchored flow matching for perturbation prediction"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy>=1.23,<2",
"scipy>=1.9",
"torch>=2.0",
"PyYAML>=6.0",
"tqdm>=4.66",
]
[project.optional-dependencies]
data = ["anndata>=0.9,<0.11", "scanpy>=1.9,<1.11", "pandas>=2,<3"]
ode = ["torchdiffeq>=0.2.3"]
dev = ["pytest>=7.0", "anndata>=0.9,<0.11", "pandas>=2,<3"]
[project.scripts]
specflow-synthetic = "specflow.cli:run_synthetic"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]