mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-17 21:25:46 +02:00
27 lines
688 B
TOML
27 lines
688 B
TOML
[build-system]
|
|
requires = ["maturin>=1.7,<2"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "saf-python-sdk"
|
|
version = "0.1.2"
|
|
description = "Standalone advanced graph runtime powered by Rust engine"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = "MIT"
|
|
authors = [{ name = "LangGraph Contributors" }]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Programming Language :: Rust",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[tool.maturin]
|
|
python-source = "python"
|
|
module-name = "saf_python_sdk.langgraph_rust_core"
|
|
bindings = "pyo3"
|
|
features = ["python-bindings"]
|
|
|