-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 860 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
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "proticelli"
version = "0.1.0"
description = "ProtiCelli: Protein Visual Language Model for microscopy image generation"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "Huangqingbo (Paul) Sun", email = "sunh@stanford.edu"},
]
dependencies = [
"torch>=2.0",
"diffusers>=0.25.0",
"accelerate>=0.20.0",
"transformers",
"tifffile",
"numpy",
"pandas",
"scipy",
"tqdm",
"Pillow",
"torchvision",
"timm",
"packaging",
]
[project.optional-dependencies]
train = [
"tensorboard",
"wandb",
]
dev = [
"pytest",
"ruff",
]
[tool.setuptools.packages.find]
include = ["proticelli*"]
[tool.setuptools.package-data]
"proticelli.data" = ["*.pkl"]