python-mod 1.1.0

Proc-macros that compile Python modules into Rust at build time (the Rython toolchain)
Documentation
1
2
3
4
5
6
7
8
9
# Package-style module for testing
def package_function():
    return "This is from a package module"

def calculate_square(x):
    return x * x

# Package constant
PACKAGE_VERSION = "1.0.0"