[package]
edition = "2021"
name = "etdl-target-python"
version = "0.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ETDL Python target: generates a Python developer API (dataclasses, ABC handler interfaces, orchestration functions) bound via stdlib ctypes to the same compiled Rust ETDL runtime the Rust target consumes. Pure Rust to build — no Python needed to build this crate, only to run its generated output."
homepage = "https://github.com/ETDL-lang/etdl-target-python"
readme = "README.md"
keywords = [
"etdl",
"code-generation",
"python",
"reliability",
"event-driven",
]
categories = [
"compilers",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/ETDL-lang/etdl-target-python"
[lib]
name = "etdl_target_python"
path = "src/lib.rs"
[[test]]
name = "python_generation"
path = "tests/python_generation.rs"
[[test]]
name = "python_runtime_integration"
path = "tests/python_runtime_integration.rs"
[dependencies.etdl-compiler]
version = "0.4.0"
default-features = false
[dependencies.etdl-parser]
version = "0.4.0"
[dependencies.serde_json]
version = "1"
[dev-dependencies.serde_yaml]
version = "0.9"