python-mod 1.0.0

A macro library for including a Python module in Rust. At this point, very imcomplete.
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"