changepacks_python/lib.rs
1//! # changepacks-python
2//!
3//! Python project support for changepacks.
4//!
5//! Implements project discovery and version management for pyproject.toml files. Parses
6//! TOML using the toml crate and preserves formatting when updating versions. Supports
7//! both single packages and workspace configurations.
8
9pub mod finder;
10pub mod package;
11pub mod workspace;
12
13pub use finder::PythonProjectFinder;