-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.14 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
[build-system]
requires = [
"scikit_build_core",
"pybind11",
"cmake>=3.28,<4",
"ninja",
"numpy",
]
build-backend = "scikit_build_core.build"
[project]
name = "alphafast"
version = "1.0.0"
requires-python = "==3.12.*"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"absl-py>=2.3.1",
"dm-haiku==0.0.16",
"jax==0.8.1",
"jax[cuda12]==0.8.1",
"numpy",
"rdkit==2024.3.5",
"setuptools==78.1.0",
"tokamax==0.0.8",
"tqdm",
"zstandard",
]
[dependency-groups]
dev = [
"pytest>=6.0",
]
[tool.uv]
package = true
environments = [
"sys_platform == 'linux' and platform_machine == 'x86_64'",
"sys_platform == 'linux' and platform_machine == 'aarch64'",
]
[tool.scikit-build]
wheel.packages = ["src/alphafold3"]
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"