forked from sede-open/openMCMC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (61 loc) · 1.66 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
71
72
73
74
75
# SPDX-FileCopyrightText: 2024 Shell Global Solutions International B.V. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "openmcmc"
version = "1.0.4"
description = "openMCMC tools"
authors = ["Bas van de Kerkhof", "Matthew Jones", "Ross Towe", "David Randell"]
homepage = "https://sede-open.github.io/openMCMC/"
repository = "https://github.com/sede-open/openMCMC"
documentation = "https://sede-open.github.io/openMCMC/"
readme = "README.md"
license = "Apache-2.0"
keywords = ["Markov Chain Monte Carlo", "MCMC"]
[tool.poetry.dependencies]
python = ">=3.9, <3.12"
pandas = ">=2.1.4"
numpy = ">=1.26.2"
scipy = ">=1.11.4"
tqdm = ">=4.66.1"
matplotlib = {version = ">=3.8.2", optional = true }
pytictoc = {version = ">=1.5.3", optional = true }
[tool.poetry.extras]
extras = ["matplotlib", "pytictoc"]
[tool.poetry.group.contributor]
optional = true
[tool.poetry.group.contributor.dependencies]
black = ">=23.12.1"
isort = ">=5.13.2"
pydocstyle = ">=6.3.0"
pylint = ">=3.0.3"
pytest = "<8.0.0"
pytest-cov = ">=4.1.0"
pytest-cases = ">=3.8.1"
mkdocs-material = ">=9.5.7"
mkdocstrings-python = ">=1.8.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.4"
[tool.pytest.ini_options]
addopts = "--cov=openmcmc --cov-fail-under=90"
testpaths = [
"tests",
]
[tool.coverage.run]
relative_files = true
source = ["src/"]
[tool.pylint]
fail-under=9.0
max-line-length=120
py-version=3.11
[tool.black]
line-length = 120
target-version = ['py39', 'py310', 'py311']
[tool.pydocstyle]
convention = "google"
add-ignore = ["D105", "D107"]
[tool.isort]
profile = "black"