-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (48 loc) · 882 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs",
"hatchling",
]
[project]
dependencies = [
"duckdb",
]
description = "The power of duckdb with the ease of pandas"
dynamic = [
"version",
]
name = "lazy_pandas"
readme = "README.md"
requires-python = ">=3.10"
[tool.codespell]
skip = ".git,.tox,./venv,./docs/site,./tests/assets/*"
[tool.hatch.build]
exclude = [
"/tests",
]
[tool.hatch.envs.hatch-test]
dependencies = [
"pandas",
"pyarrow",
"pyiceberg[sql-sqlite]",
"pytest >=8.3.3,<9",
]
extra-args = [
"-vv",
]
[tool.hatch.envs.hatch-test.scripts]
run = "pytest{env:HATCH_TEST_ARGS:} {args}"
[tool.hatch.version]
path = "src/lazy_pandas/__init__.py"
[tool.pytest.ini_options]
pythonpath = "src"
testpaths = [
"tests",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-unsafe-fixes = [
"UP",
]