forked from dfm/corner.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.44 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
[project]
name = "corner"
description = "Make some beautiful corner plots"
authors = [{ name = "Dan Foreman-Mackey", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.9"
license = { text = "BSD 2-Clause License" }
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
]
dynamic = ["version"]
dependencies = ["matplotlib>=2.1"]
[project.urls]
"Homepage" = "https://corner.readthedocs.io"
"Source" = "https://github.com/dfm/corner.py"
"Bug Tracker" = "https://github.com/dfm/corner.py/issues"
[project.optional-dependencies]
test = ["pytest", "arviz>=0.9", "scipy"]
arviz = ["arviz>=0.9"]
docs = ["arviz>=0.9", "sphinx>=1.7.5", "pandoc", "myst-nb", "sphinx-book-theme", "ipython"]
[build-system]
requires = ["setuptools>=62.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/corner/version.py"
[tool.black]
line-length = 79
[tool.isort]
skip_glob = []
line_length = 79
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_first_party = ["corner"]
[tool.coverage.run]
parallel = true
branch = true
source = ["corner"]
omit = [
"docs/*",
"tests/*",
"*/corner/version.py",
]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.report]
show_missing = true