forked from bjornwallner/DockQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
27 lines (24 loc) · 825 Bytes
/
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
[build-system]
requires = ["setuptools>=68", "cython", "numpy ~= 1.21",]
build-backend = "setuptools.build_meta"
[project]
name = "dockq"
version = "2.1"
authors = [
{ name="Claudio Mirabello", email="claudio.mirabello@scilifelab.se" },
{ name="Bjorn Wallner", email="bjorn.wallner@liu.se" },
]
description = "A Quality Measure for Protein, Nucleic Acids and Small Ligand Docking Models"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["biopython >= 1.79", "networkx", "parallelbar"]
[project.urls]
Homepage = "https://github.com/bjornwallner/DockQ"
Issues = "https://github.com/bjornwallner/DockQ/issues"
[project.scripts]
DockQ = "DockQ.__main__:main"