-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 905 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 905 Bytes
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
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "binder-filter"
version = "0.2.0"
description = "Reproducible dual-model prioritization of generated peptide and miniprotein binders"
readme = "README.md"
requires-python = ">=3.11,<3.13"
license = {text = "Apache-2.0"}
authors = [{name = "Binder Filter contributors"}]
dependencies = [
"gemmi==0.7.3",
"huggingface-hub==0.36.2",
"hf-transfer==0.1.9",
"numpy==2.3.2",
"pydantic==2.11.7",
"PyYAML==6.0.2",
"rdkit==2025.3.5",
"reportlab==4.4.3",
]
[project.optional-dependencies]
test = ["pytest==8.4.1", "pytest-cov==6.2.1"]
[project.scripts]
binder-filter = "binder_filter.cli:main"
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]
markers = ["gpu: requires real model weights and a supported NVIDIA GPU"]
[tool.hatch.build.targets.wheel]
packages = ["src/binder_filter"]