-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (65 loc) · 1.94 KB
/
setup.py
File metadata and controls
70 lines (65 loc) · 1.94 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
63
64
65
66
67
68
69
70
# Derived from Aureka-AIntibody-Challenges (MIT License; Copyright 2025 Jixian Zhang).
# Modifications Copyright 2026 Eamon Byrne.
# AbAffMat modifications are licensed under Apache-2.0; see LICENSE and THIRD_PARTY_NOTICES.md.
from pathlib import Path
from setuptools import find_packages, setup
ROOT = Path(__file__).parent
README = ROOT / "README.md"
setup(
name="abaffmat",
version="0.0.1",
author="Eamon Byrne",
author_email="eamon@eamonbyrneconsulting.com",
description="A tool for in silico antibody affinity maturation and protein binding analysis",
long_description=README.read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url="https://github.com/eamonbyrne/abaffmat.git",
packages=find_packages(
exclude=(
"data",
"data.*",
"esm_embeddings",
"esm_embeddings.*",
"outputs",
"outputs.*",
"release_data",
"release_data.*",
)
),
py_modules=[
"benchmark_yeast_display",
"data_preprocess",
"prepare_scoring_inputs",
"prepare_yeast_display_data",
"sample_candidate_pool",
],
package_data={
"models.tri_attention": ["TriAttentionCache/**/*.json"],
},
install_requires=[
"abnumber>=0.4.4",
"anarci",
"biotite",
"fair-esm",
"ml-collections",
"numpy>=1.21",
"optree",
"pandas>=1.5",
"pyyaml",
"rdkit",
"scikit-learn",
"scipy",
"torch>=2.0",
"tqdm",
"wandb",
],
python_requires=">=3.11",
license="Apache-2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)