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

* fix stup for `lambda_`
2026-02-09 23:17:27 +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" },
]