-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
44 lines (38 loc) · 1.3 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
[tool.poetry]
name = "whiscy"
version = "1.2.0"
description = "WHISCY is a software that predicts protein-protein interfaces using conservation and structural information by calculating prediction scores for each surface residue based on sequence alignment."
authors = ["Bonvin Lab <[email protected]>"]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Unix",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
]
[tool.poetry.dependencies]
python = "^3.11"
biopython = "1.79"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
coverage = "^7.4.4"
pytest-cov = "^5.0.0"
hypothesis = "^6.100.1"
[tool.poetry.scripts]
whiscy = "whiscy.cli:main"
whiscy_setup = "whiscy.cli_setup:main"
whiscy_consadjust = "whiscy.cli_consadjust:main"
whiscy_parasmooth = "whiscy.cli_parasmooth:main"
whiscy_resdist = "whiscy.cli_resdist:main"
whiscy_bfactor = "whiscy.cli_bfactor:main"
whiscy_haddock = "whiscy.cli_haddock: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"