-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpyproject.toml
36 lines (31 loc) · 1.04 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
[project]
name = "vortex-array"
# Maturin copies these, at build time, from Cargo.toml.
# https://github.com/PyO3/maturin/blob/main/src/metadata.rs#L127-L129
dynamic = ["version", "description", "authors"]
readme = "README.md"
dependencies = ["pyarrow>=17.0.0", "substrait>=0.23.0"]
requires-python = ">= 3.10"
[project.optional-dependencies]
polars = ["polars>=1.9.0"]
pandas = ["pandas>=2.2.0"]
numpy = ["numpy>=1.26.0"]
[project.urls]
Documentation = "https://spiraldb.github.io/vortex/docs/"
Changelog = "https://github.com/spiraldb/vortex/blob/develop/CHANGELOG.md"
Issues = "https://github.com/spiraldb/vortex/issues"
Benchmarks = "https://spiraldb.github.io/vortex/dev/bench/"
[build-system]
requires = ["maturin>=1.7.2,<2.0"]
build-backend = "maturin"
[tool.uv]
managed = true
[tool.maturin]
python-source = "python"
module-name = "vortex._lib"
features = ["pyo3/extension-module"]
include = [
{ path = "rust-toolchain.toml", format = "sdist" },
{ path = "README.md", format = "sdist" },
{ path = "python/vortex/py.typed", format = "sdist" },
]