-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (37 loc) · 959 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
[tool.poetry]
name = "icanexplain"
version = "0.3.0"
description = "Explain why metrics change by unpacking them"
authors = ["Max Halford <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
ibis-framework = "^9.5.0"
altair = "^5.3.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.2"
jupyter = "^1.0.0"
pandas = "^2.2.1"
pytest = "^8.2.1"
names = "^0.3.0"
ibis-framework = {extras = ["duckdb", "pandas"], version = "^9.5.0"}
mkdocs = "^1.6.0"
pygments = "^2.18.0"
vega-datasets = "^0.9.0"
mkdocs-material = "^9.5.26"
polars = "^1.0.0"
pre-commit = "^3.8.0"
mypy = "^1.11.2"
[tool.pytest.ini_options]
addopts = [
"--doctest-modules",
"--doctest-glob=README.md",
"--doctest-glob=docs/api/*.md",
"--verbose",
"--color=yes",
"--strict-markers",
]
doctest_optionflags = "NORMALIZE_WHITESPACE NUMBER ELLIPSIS"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"