-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
41 lines (35 loc) · 1.04 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
[tool.poetry]
name = "prodigy-cryst"
version = "1.0.0"
description = "Predicts if a protein complex interface is biological or crystallographic."
authors = ["BonvinLab <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.9"
scikit-learn = "0.22"
biopython = "^1.79"
numpy = "~1.20"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
coverage = "^7.5.0"
pytest-cov = "^5.0.0"
hypothesis = "^6.100.2"
[tool.poetry.scripts]
prodigy_cryst = "prodigy_cryst.interface_classifier:main"
[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"