-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
139 lines (128 loc) · 2.63 KB
/
pyproject.toml
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
[project]
name = "plinder"
dynamic = ["version"]
dependencies = [
"biotite >= 1.0",
"numpy<2",
"pandas",
"typing_extensions",
"pydantic",
"tqdm",
"plotly",
"nbformat",
"google-cloud-storage",
"gcsfs",
"gemmi",
"rdkit>=2023.9.5",
"pyarrow",
"omegaconf",
"mmcif",
"eval_type_backport",
"posebusters",
"duckdb",
"cloudpathlib",
"mols2grid",
"six",
]
description = "PLINDER: The Protein-Ligand INteraction Dataset and Evaluation Resource"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/plinder-org/plinder"
Issues = "https://github.com/plinder-org/plinder/issues"
[project.scripts]
plinder_download = "plinder.core.index.utils:download_plinder_cmd"
plinder_eval = "plinder.eval.docking.write_scores:evaluate_cmd"
plinder_stratify = "plinder.eval.docking.stratify_test_set:stratify_cmd"
plinder_plot = "plinder.eval.docking.make_plots:plot_cmd"
[project.optional-dependencies]
lint = [
"ruff == 0.1.2",
"pre-commit == 2.21.0",
]
test = [
"tox >= 4",
"pytest == 7.2.0",
"pytest-cov == 4.0.0",
"pytest-xdist == 3.6.1",
"build == 0.9.0",
"setuptools_scm[toml] == 7.0.5",
]
type = [
"mypy==1.2.0",
"types-PyYAML",
"types-requests",
]
dev = [
"plinder[lint,test,type]",
]
loader = [
"torch",
]
plots = [
"matplotlib",
"seaborn",
"mols2grid",
"matplotlib_venn",
"scipy",
]
docs = [
"itables",
"jupyter-sphinx",
"jupyterlab_myst",
"jupytext",
"myst-nb",
"myst-parser[linkify]",
"numpydoc",
"pydata-sphinx-theme == 0.15.4",
"sphinx",
"sphinx-copybutton",
"sphinx-design",
"sphinx-gallery",
"mols2grid",
"matplotlib",
]
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"build == 0.9.0",
"setuptools == 65.4.0",
"setuptools_scm[toml] == 7.0.5",
]
[tool.setuptools_scm]
root = "."
[tool.setuptools.packages.find]
where = ["src"]
include = ["plinder*"]
namespaces = false
[tool.setuptools.package-data]
plinder = [
"**.yaml",
"**.tsv",
"plinder/data/utils/annotations/static_files/artifacts_badlist.csv",
]
[tool.ruff]
line-length = 88
select = [
"F",
"I",
]
ignore = [
"E",
"W",
]
preview = true
[tool.ruff.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.mypy]
ignore_missing_imports = true
strict = true
disallow_untyped_decorators = false
[[tool.mypy.overrides]]
module = "plinder._version"
ignore_errors = true