[package]
edition = "2024"
name = "python-mod"
version = "1.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Proc-macros that compile Python modules into Rust at build time (the Rython toolchain)"
homepage = "https://github.com/rexlunae/rython"
documentation = "https://docs.rs/python-mod"
readme = "README.md"
keywords = [
"python",
"macro",
"transpiler",
"compile-time",
]
categories = [
"development-tools",
"compilers",
]
license = "Apache-2.0"
repository = "https://github.com/rexlunae/rython"
resolver = "2"
[lib]
name = "python_mod"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "documentation_tests"
path = "tests/documentation_tests.rs"
[[test]]
name = "edge_case_tests"
path = "tests/edge_case_tests.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[dependencies.path_macro]
version = "1.0"
[dependencies.proc-macro-error2]
version = "2.0"
[dependencies.proc-macro2]
version = "1.0.76"
[dependencies.python-ast]
version = "1.1.0"
[dependencies.quote]
version = "1.0"