Rename pyo3 directory to python

Also update the crate's name.
This commit is contained in:
Oliver Hamlet
2025-04-29 17:21:03 +01:00
parent 3553b02644
commit 2b1b67daba
15 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ jobs:
- name: Build the Python wrapper
shell: bash
working-directory: pyo3
working-directory: python
run: |
python -m venv .venv
Generated
+1 -1
View File
@@ -598,7 +598,7 @@ dependencies = [
]
[[package]]
name = "libloot_pyo3"
name = "libloot_python"
version = "0.26.0"
dependencies = [
"libloot",
+1 -1
View File
@@ -27,7 +27,7 @@ parameterized-test = { path = "./parameterized-test" }
tempfile = "3.17.1"
[workspace]
members = ["cxx", "ffi-errors", "nodejs", "parameterized-test", "pyo3"]
members = ["cxx", "ffi-errors", "nodejs", "parameterized-test", "python"]
[workspace.dependencies]
esplugin = "6.1.2"
+1 -1
View File
@@ -2,7 +2,7 @@
This is an **experimental** reimplementation of [libloot](https://github.com/loot/libloot) using Rust instead of C++, that should match libloot v0.26.0.
See the `cxx` and `pyo3` subdirectories for C++ and Python wrappers respectively.
See the `cxx` and `python` subdirectories for C++ and Python wrappers respectively.
Expect:
+1 -1
View File
@@ -1,5 +1,5 @@
[package]
name = "libloot_pyo3"
name = "libloot_python"
version = "0.26.0"
edition = "2024"
+1 -1
View File
@@ -1,4 +1,4 @@
# libloot-pyo3
# libloot-python
An **experimental** Python wrapper around the libloot Rust implementation, built using [PyO3](https://pyo3.rs).