pyoxidizerlib/py_packaging/mod.rs
1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at https://mozilla.org/MPL/2.0/.
4
5/*!
6Functionality for interacting with Python.
7
8This module tree holds functionality that is centered around Python.
9*/
10
11pub mod binary;
12pub mod config;
13pub mod distribution;
14pub mod distutils;
15pub mod embedding;
16pub mod filtering;
17pub mod libpython;
18pub mod packaging_tool;
19pub mod resource;
20pub mod standalone_builder;
21pub mod standalone_distribution;