-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
34 lines (31 loc) · 1.08 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "foldsteer"
version = "0.1.0"
description = "Inference-time chemical steering for AF3-style structure prediction models"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
keywords = ["structure-prediction", "diffusion", "cheminformatics", "alphafold3"]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
]
dependencies = [
"torch>=2.0",
"numpy>=1.24",
"rdkit>=2023.3",
]
# The host models are deliberately NOT dependencies. foldsteer imports nothing
# from OpenFold3 at module scope; the adapter imports it lazily inside the
# patch function. This keeps the package installable and testable in an
# environment that has no folding model at all.
[project.optional-dependencies]
openfold3 = ["openfold3>=0.4"]
test = ["pytest>=7"]
[tool.setuptools.packages.find]
include = ["foldsteer*"]