-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (59 loc) · 1.55 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools-scm"]
[project]
authors = [{name = "arviz-devs"}]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering",
]
dependencies = [
"anywidget == 0.9.13",
"arviz-base[h5netcdf] ~= 0.2.0",
"watchfiles == 0.24.0",
"xarray ~= 2024.9.0",
]
description = "Bayesian dashboards"
dynamic = ["version"]
keywords = []
license = {file = "LICENSE"}
maintainers = []
name = "arviz_dashboard"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">3.10,<3.12"
[project.optional-dependencies]
dev = [
"ipdb",
"pre-commit",
"ruff",
]
examples = ["pymc"]
notebooks = [
"jupyterlab",
"jupyterlab-katex",
"jupyterlab-spellchecker",
"jupyterlab-unfold",
"jupyterlab_code_formatter",
]
tests = [
"pytest",
"pytest-cov",
]
[project.urls]
"Bug Tracker" = "https://github.com/arviz-devs/arviz_dashboard/issues"
"Documentation" = "https://github.com/arviz-devs/arviz_dashboard"
"Homepage" = "https://github.com/arviz-devs/arviz_dashboard"
"Repository" = "https://github.com/arviz-devs/arviz_dashboard"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"