1
2
3
4
5
6
7
8
9
10
//! Module containing artifacts that can be resolved and installed.
mod sdist;

mod stree;
/// Module for working with PyPA wheels. Contains the [`Wheel`] type, and related functionality.
pub mod wheel;

pub use sdist::SDist;
pub use stree::STree;
pub use wheel::Wheel;