-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
48 lines (41 loc) · 1.15 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
[tool.poetry]
name = "prodigy-prot"
license = "Apache-2.0"
version = "2.2.5"
description = "PROtein binDIng enerGY prediction"
authors = [
"Computational Structural Biology Group at Utrecht University <prodigy.bonvinlab@gmail.com>",
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[tool.poetry.dependencies]
python = "^3.9"
biopython = "^1.80"
freesasa = "2.2.1"
numpy = "^2"
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
coverage = "^7.4.4"
pytest-cov = "^5.0.0"
hypothesis = "^6.100.1"
[tool.poetry.scripts]
prodigy = "prodigy_prot.predict_IC:main"
[tool.black]
line-length = 79
[tool.setuptools]
include-package-data = true
packages = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"