- Added `scripts/library/venv_utils.py`: - Utilities for creating, activating, and managing Python virtual environments. - Supports automatic requirement installation and optional --verbose mode. - Added `scripts/change_case.py`: - CLI script to recursively rename files and directories based on case transformation (lower, upper, capitalize). - Supports --recursive and --case flags, and integrates with `venv_utils.py`. - Updated README with usage instructions and documentation for new components.
6 lines
126 B
Python
6 lines
126 B
Python
# scripts/library/__init__.py
|
|
|
|
from .venv_utils import parse_verbose, run_in_venv
|
|
|
|
__all__ = ["parse_verbose", "run_in_venv"]
|