-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 940 Bytes
/
Copy pathpyproject.toml
File metadata and controls
52 lines (45 loc) · 940 Bytes
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
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "minipcn"
authors = [
{name = "Michael J. Williams", email = "michaeljw1@googlemail.com"},
]
description = "A minimal preconditioned Crank-Nicolson MCMC sampler"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"matplotlib",
"numpy",
"scipy",
"tqdm",
"array-api-compat",
"orng>=0.1.0a7",
]
dynamic = ["version"]
[project.optional-dependencies]
jax = [
"jax>0.4.35",
"jaxlib"
]
torch = [
"torch",
]
[dependency-groups]
test = [
"pytest>=7.0",
]
[tool.setuptools_scm]
[tool.ruff]
line-length = 79
indent-width = 4
target-version = "py310"
[tool.ruff.lint]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
extend-select = ["I"]