forked from vortex-data/vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 963 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 963 Bytes
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
[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>=15.0.0",
]
requires-python = ">= 3.11"
[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.rye]
managed = true
dev-dependencies = [
"ipython>=8.26.0",
"pandas>=2.2.2",
"pip",
]
[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" },
]