Files
alphafold3/pyproject.toml
Ryan Pachauri 389078218c Migrate AF3 to tokamax.gated_linear_unit and tokamax.dot_product_attention.
PiperOrigin-RevId: 838262306
Change-Id: I321a78b2a7d0d5cdeabe797c59b1e9c03e33780d
2025-11-29 19:03:26 -08:00

53 lines
964 B
TOML

[build-system]
requires = [
"scikit_build_core",
"pybind11",
"cmake>=3.28",
"ninja",
"numpy",
]
build-backend = "scikit_build_core.build"
[project]
name = "alphafold3"
version = "3.0.1"
requires-python = ">=3.11"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"absl-py>=2.3.1",
"dm-haiku==0.0.13",
"jax==0.8.0",
"jax[cuda12]==0.8.0",
"numpy",
"rdkit==2024.3.5",
"setuptools==78.1.0",
"tokamax==0.0.4",
"tqdm",
"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"