dmenv 0.20.1

Simple and practical virtualenv manager for Python
Documentation
1
2
3
4
5
6
7
8
9
10
use structopt::StructOpt;

fn main() {
    let cmd = dmenv::Command::from_args();
    let result = dmenv::run_cmd(cmd);
    if let Err(error) = result {
        dmenv::print_error(&error.to_string());
        std::process::exit(1)
    };
}