Initial python groundwork

This commit is contained in:
2023-07-27 22:45:53 -04:00
parent dc44c47df1
commit e80ad9680a
4 changed files with 12 additions and 2 deletions

4
build.rs Normal file
View File

@@ -0,0 +1,4 @@
fn main() {
let home = std::env::var("HOME").expect("${HOME} is missing");
println!("cargo:rustc-env=LD_LIBRARY_PATH={home}/.pyenv/versions/3.11.4/lib");
}