-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (62 loc) · 1.78 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
[build-system]
requires = ["setuptools>=40.6.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "cobaya_utilities"
dynamic = ["version"]
authors = [{ name = "Xavier Garrido" }]
description = "A set of functions to deal with MCMC output from cobaya"
readme = "README.rst"
license = { file = "LICENSE" }
keywords = ["cobaya", "MCMC", "plot"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Education",
]
requires-python = ">=3.9.0"
dependencies = ["cobaya>=3.4.1", "seaborn", "tqdm", "jinja2"]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "camb", "mflike"]
notebook = ["jupyter", "camb", "latex2mathml"]
[project.urls]
Homepage = "https://github.com/xgarrido/cobaya_utilities"
Documentation = "https://cobaya_utilities.readthedocs.io"
Source = "https://github.com/xgarrido/cobaya_utilities"
Tracker = "https://github.com/xgarrido/cobaya_utilities/issues"
Licensing = "https://github.com/xgarrido/cobaya_utilities/blob/master/LICENCE"
[tool.setuptools_scm]
version_file = "cobaya_utilities/_version.py"
[tool.setuptools.packages.find]
exclude = ["binder", "docs", "tests"]
[tool.black]
line-length = 100
exclude = '''
(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)
'''
[tool.isort]
profile = "black"
[tool.coverage.run]
omit = [
"cobaya_utilities/tests/*",
"cobaya_utilities/plots.py",
"cobaya_utilities/_version.py",
]
[tool.coverage.report]
exclude_lines = ["raise LoggedError", "except AttributeError"]