-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.03 KB
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
[build-system]
requires = ["maturin>=1.4.0,<2.0"]
build-backend = "maturin"
[project]
name = "zarr_datafusion_search"
requires-python = ">=3.10"
dependencies = [
"datafusion>=52.0",
"geodatafusion==0.2.0",
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "zarr_datafusion_search._rust"
python-source = "python"
[tool.uv]
dev-dependencies = [
"icechunk>=1.1.20; python_version >= '3.11'",
"ipykernel",
"maturin",
"obstore",
"pytest-asyncio",
"pytest",
"shapely",
]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I"]
per-file-ignores = {}
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.pytest.ini_options]
# Directories to search for tests
testpaths = [
"tests",
]