scoop-uv 0.9.0

Scoop up your Python envs — pyenv-style workflow powered by uv
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Migration support for importing environments from other tools

pub mod common;
mod conda;
mod discovery;
mod extractor;
mod migrator;
mod source;
mod venvwrapper;

pub use conda::CondaDiscovery;
pub use discovery::PyenvDiscovery;
pub use extractor::{ExtractionResult, PackageExtractor, PackageSpec};
pub use migrator::{MigrateOptions, MigrationResult, Migrator, PythonAvailability};
pub use source::{EnvironmentSource, EnvironmentStatus, SourceEnvironment, SourceType};
pub use venvwrapper::VenvWrapperDiscovery;