diff --git a/src/cli/init.rs b/src/cli/init.rs index ddd76cef2a..465c617658 100644 --- a/src/cli/init.rs +++ b/src/cli/init.rs @@ -181,6 +181,13 @@ pub async fn execute(args: Args) -> miette::Result<()> { pyproject_manifest_path.to_string_lossy(), e ); + } else { + // Inform about the addition of the package itself as an editable install of the project + eprintln!( + "{}Added package '{}' as an editable dependency.", + console::style(console::Emoji("✔ ", "")).green(), + name + ); } }