-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (59 loc) · 1.51 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (59 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "genailab"
version = "0.1.0"
description = "Generative AI for Computational Biology: foundation models, VAE, diffusion, and counterfactual simulation"
authors = ["Your Name <your.email@example.com>"]
readme = "README.md"
license = "MIT"
packages = [{include = "genailab", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
torch = ">=2.1"
torchvision = ">=0.16"
numpy = ">=1.24"
pandas = ">=2.0"
scipy = ">=1.11"
scikit-learn = ">=1.3"
matplotlib = ">=3.8"
seaborn = ">=0.13"
tqdm = ">=4.66"
pillow = ">=10.0"
pydantic = ">=2.6"
hydra-core = ">=1.3"
omegaconf = ">=2.3"
[tool.poetry.group.bio.dependencies]
scanpy = ">=1.9"
anndata = ">=0.10"
GEOparse = ">=2.0"
leidenalg = ">=0.10" # for clustering in scanpy
umap-learn = ">=0.5" # for latent space visualization
[tool.poetry.group.experiment.dependencies]
tensorboard = ">=2.15"
wandb = ">=0.16"
[tool.poetry.group.dev.dependencies]
ipykernel = ">=6.29"
jupyter = ">=1.0"
pytest = ">=8.0"
black = ">=24.0"
ruff = ">=0.3"
mypy = ">=1.8"
[tool.poetry.scripts]
genailab-train = "genailab.workflows.train:main"
genailab-simulate = "genailab.workflows.simulate:main"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true