-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
83 lines (75 loc) · 1.87 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
72
73
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "dx"
version = "1.4.0"
description = "Python wrapper for Data Explorer"
authors = [
"Dave Shoup <[email protected]>",
"Kyle Kelley <[email protected]>",
]
readme = "README.md"
license = "MIT"
homepage = "https://app.noteable.io/"
repository = "https://github.com/noteable-io/dx"
keywords = ["data", "exploration", "visualization"]
[tool.poetry.dependencies]
python = "^3.9"
pandas = "^1.3.5"
ipython = ">=7.31.1"
pydantic = "^1.9"
mkdocs = { version = "^1.3.1", optional = true }
mkdocs-material = { version = "^8.3.9", optional = true }
mkdocs-jupyter = { version = ">=0.21,<0.23", optional = true }
mkdocstrings = { version = ">=0.19,<0.22", optional = true }
mkdocstrings-python = { version = ">=0.7.1,<0.10.0", optional = true }
duckdb-engine = "^0.9.2"
exceptiongroup = "^1.0.4"
repr-llm = "^0.3.0"
structlog = "^23.2.0"
[tool.poetry.group.dev.dependencies]
black = ">=22.12,<24.0"
flake8 = "^5.0.4"
flake8-docstrings = "^1.6.0"
isort = "^5.11.4"
nox = "^2022.11.21"
nox-poetry = "^1.0.2"
pytest = "^7.2.0"
pytest-benchmark = "^4.0.0"
pytest-cov = "^4.0.0"
pytest-mock = "^3.10.0"
# for datatype testing
Faker = ">=15.3.4,<19.0.0"
geopandas = "^0.12.2"
polars = ">=0.16.12,<0.18.0"
modin = { extras = ["all"], version = "^0.19.0" }
dask = "^2023.3.1"
vaex = "^4.16.0"
[tool.poetry.extras]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocs-jupyter",
"mkdocstrings",
"mkdocstrings-python",
"mkdocs-glightbox",
]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 100
[tool.black]
line-length = 100
[tool.coverage.run]
branch = false
omit = ["*/tests/*"]
[tool.coverage.report]
exclude_lines = [
"if self.debug:",
"pragma: no cover",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == '__main__':",
]
ignore_errors = true
omit = []