python_packaging/lib.rs
1// Copyright 2022 Gregory Szorc.
2//
3// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
6// option. This file may not be copied, modified, or distributed
7// except according to those terms.
8
9/*! Python Packaging Implemented in Rust
10
11This crate exposes functionality for interacting with Python resources
12and packaging facilities.
13*/
14
15pub mod bytecode;
16pub mod filesystem_scanning;
17pub mod interpreter;
18pub mod libpython;
19pub mod licensing;
20pub mod location;
21pub mod module_util;
22pub mod package_metadata;
23pub mod policy;
24pub mod python_source;
25pub mod resource;
26pub mod resource_collection;
27#[cfg(test)]
28mod testutil;
29#[cfg(feature = "wheel")]
30pub mod wheel;
31#[cfg(feature = "wheel")]
32pub mod wheel_builder;
33#[cfg(feature = "zip")]
34pub mod zip_app_builder;