-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "caliby"
version = "0.1"
description = "Potts model-based protein sequence design conditioned on structural ensembles"
requires-python = ">=3.12"
license = "Apache-2.0"
readme = "README.md"
dependencies = [
"atomworks-caliby @ git+https://github.com/richardshuai/atomworks-caliby.git@atomworks-caliby-v1.0.0",
"protpardelle @ git+https://github.com/ProteinDesignLab/protpardelle-1c.git@7962da091a335251fa8e5ddef5d2c937fbd9d9ae",
"dm-tree<0.1.10",
"biotite>=1.4.0",
"einops>=0.8.1",
"huggingface_hub",
"hydra-core>=1.3.2",
"joblib>=1.3.0",
"lightning>=2.4.0",
"natsort>=8.0.0",
"numpy>=1.26.0,<2.2.0",
"omegaconf>=2.3.0",
"p-tqdm>=1.4.0",
"pandas>=2.2.0,<2.3.0",
"pyyaml>=6.0",
"scipy>=1.13.1,<1.16.0",
"torch>=2.6.0",
"torchtyping==0.1.5",
"tqdm>=4.57.0",
"wandb>=0.17.0,<0.23.0",
]
[project.optional-dependencies]
af2 = [
"colabdesign @ git+https://github.com/sokrypton/ColabDesign.git@d024c4e846fea83c090afcbe89a313eeee8ec01e",
"jax[cuda12]==0.4.34",
]
[tool.setuptools.packages.find]
exclude = ["tests", "scripts"]
[tool.setuptools.package-data]
caliby = ["configs/**/*.yaml"]
[tool.ruff]
line-length = 120
exclude = ["chroma"]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E731"]
[tool.ruff.format]
quote-style = "preserve" # avoid churning quotes
indent-style = "space"