-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
70 lines (64 loc) · 1.43 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
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
exclude = '''(
_version.py
| clean/pdb2pqr/
)'''
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.tox]
legacy_tox_ini = """
[tox]
envlist=py35,py36,py37,py38,py39
changedir=./tests/
[testenv]
deps=
pytest
commands=
py{35,36,37,38,39}: pytest test.py
"""
[tool.poetry]
name = "pypka"
version = "2.10.0"
description = "A python module for flexible Poisson-Boltzmann based pKa calculations with proton tautomerism"
authors = ["Pedro Reis <[email protected]>"]
license = "LGPLv3"
readme = "README.md"
homepage = "https://pypka.org"
repository = "https://github.com/mms-fcul/PypKa"
documentation = "https://pypka.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
]
[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
psutil = "*"
pytest = ">=6.2.5"
delphi4py = "==1.3.0"
pdbmender = "==0.6.1"
numpy = [
{version = ">=1.23.0", python = ">=3.8"},
{version = ">=1.21.0", python = ">=3.7,<3.8"},
{version = ">=1.19.0", python = ">=3.6,<3.7"}
]
[tool.poetry.dev-dependencies]
recommonmark = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
flake8 = "*"
mypy = "*"
bump2version = "*"
pytest = "*"
coverage = "*"
pytest-cov = "*"
isort = "*"
tox = "*"
black = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"