pybuild 0.0.1

*Hopefully* a fast python source code bundler
Documentation
use pybuild::placeholder;

fn main() {
    // V2

    /*
    Starting again - what if we just parse imports and trim all files that are not included in the import statements?
    This is a "conservative" tree-shake where we are shaking at a macro level: the file level
    If we can solve this, then we can step into the micro level and start pulling out just the bits that are used within the files gathered
    In the end, this will be a first-pass
     - Using import statements, collect only those files that are imported starting from the `<entrypoint>` root
    */
    placeholder();

    let parser = pybuild_parser::Parser::new("./tests/simple/single.s3_list");
    parser.parse()
}