forked from hlasimpk/af3_mmseqs_scripts
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (82 loc) · 2.41 KB
/
pyproject.toml
File metadata and controls
93 lines (82 loc) · 2.41 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "abcfold"
version = "1.1.3"
description = "Tool to run & compare AlphaFold3, Boltz, Chai-1, OpenFold3 and Protenix"
readme = "README.md"
license = { text = "BSD License" }
authors = [
{ name = "Adam Simpkin", email = "hlasimpk@liverpool.ac.uk" },
{ name = "Luc Elliott", email = "hllelli2@liverpool.ac.uk" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"numpy==1.26.4",
"colorama",
"tqdm",
"biopython==1.84",
"requests",
"types-requests",
"pandas==2.2.3",
"plotly",
"jinja2",
"pyarrow==19.0.1",
]
[project.urls]
homepage = "https://github.com/rigdenlab/ABCFold"
[tool.setuptools]
packages = [
"abcfold",
"abcfold.alphafold3",
"abcfold.boltz",
"abcfold.chai1",
"abcfold.protenix",
"abcfold.openfold3",
"abcfold.html",
"abcfold.output",
"abcfold.plots",
"abcfold.plots.pae-viewer-main",
"abcfold.plots.pae-viewer-main.src",
"abcfold.plots.pae-viewer-main.src.css",
"abcfold.plots.pae-viewer-main.src.modules",
"abcfold.plots.pae-viewer-main.src.templates",
"abcfold.plots.pae-viewer-main.standalone",
"abcfold.plots.pae-viewer-main.standalone.css",
"abcfold.plots.pae-viewer-main.standalone.js",
"abcfold.plots.pae-viewer-main.standalone.libs",
"abcfold.scripts",
]
include-package-data = true
[tool.setuptools.package-data]
abcfold = ["data/config.ini"]
[project.scripts]
abcfold = "abcfold.abcfold:main"
mmseqs2msa = "abcfold.scripts.add_mmseqs_msa:main"
custom_templates = "abcfold.scripts.add_custom_template:main"
ipsae = "abcfold.scripts.ipsae:main"
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203"]
[tool.ruff]
line-length = 88
select = ["E", "F", "W"]
[tool.mypy]
python_version = "3.10"
warn_unused_configs = true
ignore_missing_imports = true
check_untyped_defs = true
[[tool.mypy.overrides]]
module = ["abcfold.scripts.ipsae", "abcfold.scripts.add_mmseqs2_msa", "abcfold.tests.conftest"]
ignore_errors = true