-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.89 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (58 loc) · 1.89 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "alphafold2-from-scratch"
version = "0.1.0"
description = "Modular PyTorch reconstruction of the core AlphaFold2 deep learning pipeline for research and ablations."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "Pablo Reyes" }]
keywords = [
"alphafold",
"protein-structure-prediction",
"deep-learning",
"pytorch",
"geometric-deep-learning",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"biopython>=1.84,<2",
"matplotlib>=3.8,<4",
"numpy>=1.26,<3",
"pandas>=2.2,<3",
"py3Dmol>=2.4,<3",
"PyYAML>=6.0,<7",
"torch>=2.2,<3",
]
[project.optional-dependencies]
data = ["awscli>=1.36,<2"]
dev = ["pytest>=8,<9"]
[project.scripts]
af2-prepare-data = "scripts.prepare_data:main"
af2-inspect-data = "scripts.inspect_data:main"
af2-validate = "scripts.validate_model:main"
af2-train = "scripts.train_model:main"
af2-train-parallel = "scripts.train_parallel:main"
af2-train-ablation = "scripts.train_ablation:main"
af2-train-ablation-parallel = "scripts.train_ablation_parallel:main"
[project.urls]
Homepage = "https://github.com/pablo-reyes8/alpha-fold2"
Repository = "https://github.com/pablo-reyes8/alpha-fold2"
Issues = "https://github.com/pablo-reyes8/alpha-fold2/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["data", "data.*", "model", "model.*", "scripts", "scripts.*", "training", "training.*"]
[tool.pytest.ini_options]
testpaths = ["tests"]