angreal 2.8.6

Angreal is a tool for templating projects and associated processes to provide a consistent developer experience across multiple projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Virtual environment integration submodule
//!
//! This module provides the venv submodule for angreal.integrations.venv

use pyo3::prelude::*;

/// Create the venv submodule
#[pymodule]
pub fn venv(_py: Python, m: &Bound<'_, PyModule>) -> PyResult<()> {
    // Register VirtualEnv and venv_required from the main venv module
    crate::python_bindings::venv::register_venv(_py, m)?;
    Ok(())
}