-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 909 Bytes
/
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
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "MultiHMCGibbs"
authors = [{name = "Coleman Krawczyk"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: Apache Software License"]
dynamic = ["version", "description"]
requires-python = ">=3.10"
dependencies = [
"arviz",
"corner",
"matplotlib",
"numpyro"
]
[project.optional-dependencies]
test = [
"coverage[toml]",
"flake8",
]
doc = [
"myst-nb",
"sphinx",
"sphinx_rtd_theme"
]
dev = [
"MultiHMCGibbs[test]",
"MultiHMCGibbs[doc]"
]
[project.urls]
Source = "https://github.com/CKrawczyk/MultiHMCGibbs"
[tool.flit.sdist]
exclude = [
"docs/",
"build_docs.sh"
]
[tool.coverage.run]
omit = ["*test*"]
source = ["MultiHMCGibbs"]
command_line = "-m unittest discover"
[tool.coverage.report]
show_missing = true