pyoxidizerlib/lib.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 embedding and packaging Python.
7
8PyOxidizer provides a myriad of functionality for packaging a Python
9distribution and embedding it in a larger binary, oftentimes an executable.
10
11This library exposes that functionality to other tools.
12*/
13
14mod default_python_distributions;
15pub mod environment;
16pub mod licensing;
17pub mod project_building;
18pub mod project_layout;
19pub mod projectmgmt;
20pub mod py_packaging;
21pub mod python_distributions;
22pub mod starlark;
23
24#[cfg(test)]
25mod testutil;