-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.58 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "protpardelle"
authors = [
{ name = "Tianyu Lu", email = "tianyulu@stanford.edu" },
{ name = "Richard Shuai", email = "rshuai@stanford.edu" },
{ name = "Petr Kouba", email = "petrkouba3@gmail.com" },
{ name = "Zhaoyang Li", email = "zhaoyangli@stanford.edu" },
{ name = "Yilin Chen", email = "yilinc5@stanford.edu" },
{ name = "Akio Shirali", email = "akios@stanford.edu" },
{ name = "Jinho Kim", email = "zhkim216@stanford.edu" },
{ name = "Po-Ssu Huang", email = "possu@stanford.edu" },
]
license = { file = "LICENSE" }
dynamic = ["version"]
description = "Conditional Protein Structure Generation with Protpardelle-1c"
readme = "README.md"
requires-python = ">=3.10"
# Required dependencies
dependencies = [
"biopython",
"biotite",
"dm-tree",
"einops",
"huggingface_hub",
"hydra-core",
"jaxtyping",
"jupyter",
"ml_collections",
"modelcif",
"numpy",
"omegaconf",
"pandas",
"prody",
"pyyaml",
"scipy",
"torch>=2.6.0",
"tqdm",
"transformers",
"typer",
"wandb",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "pre-commit"]
viz = ["py3dmol", "matplotlib", "seaborn"]
[tool.pytest.ini_options]
addopts = "-v -s"
testpaths = ["tests"]
[tool.setuptools.dynamic]
version = { attr = "protpardelle.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["protpardelle", "protpardelle.*"]
[tool.setuptools.package-data]
protpardelle = ["configs/**/*.yaml"]