forked from google-deepmind/alphafold3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (56 loc) · 1.25 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
57
58
59
60
61
62
[build-system]
requires = [
"scikit_build_core",
"pybind11",
"cmake>=3.28",
"ninja",
"numpy",
]
build-backend = "scikit_build_core.build"
[project]
name = "alphafold3"
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",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest>=6.0"]
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
wheel.exclude = [
"**.pyx",
"**/CMakeLists.txt",
"**.cc",
"**.h"
]
sdist.include = [
"src/alphafold3/_version.py",
"LICENSE",
"OUTPUT_TERMS_OF_USE.md",
"WEIGHTS_PROHIBITED_USE_POLICY.md",
"WEIGHTS_TERMS_OF_USE.md",
]
[tool.setuptools_scm]
write_to = "src/alphafold3/_version.py"
[tool.cibuildwheel]
build = "cp3*-manylinux_x86_64"
manylinux-x86_64-image = "manylinux_2_28"
[project.scripts]
build_data = "alphafold3.build_data:build_data"
af3 = "alphafold3.run_alphafold:script_main"