Files
qdrant/lib/edge/python/pyproject.toml
Andrey Vasnetsov 25252aba37 Generate *.pyi files for EDGE (#7943)
* generate pui files for edge functions

* fix stup for `lambda_`
2026-01-20 18:28:40 +01:00

14 lines
404 B
TOML

[build-system]
build-backend = "maturin"
requires = ["maturin>=1.0,<2.0"]
[tool.maturin]
features = ["pyo3/extension-module"]
# Include stub files and PEP 561 marker in the wheel for IDE support
include = [
{ path = "qdrant_edge.pyi", format = "sdist" },
{ path = "qdrant_edge.pyi", format = "wheel" },
{ path = "py.typed", format = "sdist" },
{ path = "py.typed", format = "wheel" },
]