-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
66 lines (58 loc) · 1.83 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
[tool.poetry]
name = "acpype"
version = "2023.11.14"
description = "ACPYPE - AnteChamber PYthon Parser interfacE"
authors = ["Alan Silva <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://alanwilter.github.io/acpype/"
repository = "https://github.com/alanwilter/acpype"
keywords = ["acpype", "amber", "gromacs"]
classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
# packages = [{ include = "acpype" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/alanwilter/acpype/issues"
"Wiki" = "https://github.com/alanwilter/acpype/wiki"
"Docs" = "https://acpype.readthedocs.io"
"DOI" = "https://doi.org/10.1186/1756-0500-5-367"
[tool.poetry.scripts]
acpype = "acpype.cli:init_main"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
openbabel-wheel = "^3.1.1.19"
[tool.poetry.dev-dependencies]
ruff = "^0.1.2"
pytest-cov = "^3.0.0"
mypy = "^0.920"
pdbpp = "^0.10.3"
ipdb = "0.13"
pytest-random-order = "^1.0.4"
pre-commit = "^2.16.0"
importlib-metadata = "^4.1"
twine = "^3.7.1"
pytest-xdist = "^3.3.1"
pip = "^23.1.2"
wheel = "^0.40.0"
sphinx-rtd-theme = "^1.3.0"
sphinx = ">=6"
[tool.ruff]
target-version = "py38"
line-length = 120
extend-select = ["UP", "RUF", "I"] # "E501"
ignore = ['UP036']
[tool.pytest.ini_options]
addopts = "tests --cov=tests --cov=acpype --cov-report=term-missing:skip-covered --cov-report=xml --dist=loadgroup -n 0 --durations=5"
# markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
[tool.mypy]
# ignore_missing_imports = true #waiting for some stubs
[[tool.mypy.overrides]]
module = ["setuptools", "openbabel"]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"