-
Notifications
You must be signed in to change notification settings - Fork 616
/
pyproject.toml
56 lines (51 loc) · 1.01 KB
/
pyproject.toml
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
[build-system]
requires = [
"scikit_build_core",
"pybind11",
"cmake>=3.28",
"ninja",
"numpy",
]
build-backend = "scikit_build_core.build"
[project]
name = "alphafold3"
version = "3.0.0"
requires-python = ">=3.11"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"absl-py",
"chex",
"dm-haiku==0.0.13",
"dm-tree",
"jax==0.4.34",
"jax[cuda12]==0.4.34",
"jax-triton==0.2.0",
"jaxtyping==0.2.34",
"numpy",
"rdkit==2024.3.5",
"triton==3.1.0",
"tqdm",
"typeguard==2.13.3",
"zstandard",
]
[project.optional-dependencies]
test = ["pytest>=6.0"]
[tool.scikit-build]
wheel.exclude = [
"**.pyx",
"**/CMakeLists.txt",
"**.cc",
"**.h"
]
sdist.include = [
"LICENSE",
"OUTPUT_TERMS_OF_USE.md",
"WEIGHTS_PROHIBITED_USE_POLICY.md",
"WEIGHTS_TERMS_OF_USE.md",
]
[tool.cibuildwheel]
build = "cp3*-manylinux_x86_64"
manylinux-x86_64-image = "manylinux_2_28"
[project.scripts]
build_data = "alphafold3.build_data:build_data"