-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (83 loc) · 2 KB
/
pyproject.toml
File metadata and controls
90 lines (83 loc) · 2 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
authors = [
{name = "Maximilian Kruse", email = "maximilian.kruse@kit.edu"},
{name = "Linus Seelinger", email = "linus.seelinger@kit.edu"},
]
maintainers = [{ name = "Maximilian Kruse", email = "maximilian.kruse@kit.edu" }]
name = "mtmlda"
description = "Markov Tree Multilevel Delayed Acceptance MCMC Library"
readme = "README.md"
requires-python = ">=3.12"
dynamic = ["version"]
license = {text = "MIT"}
keywords = ["multilevel-methods", "bayesian-inference", "markov-chain-monte-carlo"]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
]
urls = { repository = "https://github.com/UQatKIT/mtmlda" }
# --------------------------------------------------------------------------------------------------
dependencies = [
"anytree>=2.12.1",
"numpy>=2.1.3",
]
[dependency-groups]
dev = [
"pre-commit>=4.1.0",
"ruff>=0.8.1",
]
docs = [
"mkdocs-material>=9.5.49",
"mkdocs-autorefs>=1.2.0",
"mkdocstrings[python]>=0.27.0",
]
model = [
"umbridge>=1.2.4",
]
notebook = [
"jupyter>=1.1.1",
"pandas>=2.2.3",
]
postprocessing = [
"arviz>=0.20.0",
"pydot>=3.0.3",
"seaborn>=0.13.2",
"xarray>=2024.11.0",
]
# --------------------------------------------------------------------------------------------------
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.uv]
environments = ["sys_platform == 'linux'"]
cache-keys = [
{ file = "pyproject.toml" },
{ git = { commit = true, tags = true } },
]
# --------------------------------------------------------------------------------------------------
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812",
"EM101",
"EM102",
"FBT001",
"FBT003",
"F722",
"F821",
"ISC001",
"PD008",
"PD011",
"PLR2004",
"PT003",
"RET504",
"S101",
"TRY003",
]
pydocstyle.convention = "google"