-
Notifications
You must be signed in to change notification settings - Fork 227
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (32 loc) · 1.16 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
[project]
name = "vortex-data-cuda"
# Maturin copies these, at build time, from Cargo.toml.
dynamic = ["version", "description", "authors"]
requires-python = ">= 3.11"
# The CUDA extension package must exactly match the base package version because the two extensions
# exchange private Vortex vtable metadata. Future buffer-handoff support will extend this private
# bridge. Keep this in sync with the workspace package version; release automation may rewrite it
# when publishing a non-workspace version.
dependencies = ["vortex-data==0.1.0"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Environment :: GPU :: NVIDIA CUDA",
]
[build-system]
requires = ["maturin>=1.15.0,<2.0"]
build-backend = "maturin"
[tool.uv]
managed = true
[tool.maturin]
profile = "release"
editable-profile = "dev"
python-source = "python"
module-name = "vortex_cuda._lib"
features = ["pyo3/extension-module"]
compatibility = "manylinux2014"