This crate simply enables the user (with sudo
rights) to install Poetry and all its dependencies. If Poetry is already installed, it will be properly handeled.
It is assumed that the system on which the compiler runs is Debian-based.
```rust use poetry_finder::run;
let install_poetry = run();
if let Err(e) = install_poetry {
println!("{}", e);
std::process::exit(1);
}
```