post AI cleanup & fixes

This commit is contained in:
2025-08-12 22:28:01 +02:00
parent 088b7f48aa
commit 81852334d5
6 changed files with 435 additions and 41 deletions

View File

@@ -1,4 +1,4 @@
# Rhai Python Bindings - Setup Instructions
# Rhai Python Bindings
This is a basic implementation of Python bindings for the Rhai scripting language using PyO3.
@@ -25,22 +25,6 @@ This is a basic implementation of Python bindings for the Rhai scripting languag
pip install maturin
```
## Project Setup
1. Create the project directory structure:
```bash
mkdir rhai-python
cd rhai-python
mkdir src python/rhai
```
2. Copy the provided files to their respective locations:
- `Cargo.toml` → project root
- `pyproject.toml` → project root
- `src/lib.rs` → src directory
- `python/rhai/__init__.py` → python/rhai directory
- `example_usage.py` → project root (for testing)
## Building
1. **Development build** (recommended for testing):