From 39cfcecfaa9d5c9e6fef9408a031ccea79f8a3e8 Mon Sep 17 00:00:00 2001 From: Patrick Boateng Date: Fri, 8 Aug 2025 13:28:44 -0500 Subject: [PATCH] updated print_final_info function which was still refering the setup.py as the configuration file for the project created by makepackage --- makepackage/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makepackage/__main__.py b/makepackage/__main__.py index 1c512d1..0587b3f 100644 --- a/makepackage/__main__.py +++ b/makepackage/__main__.py @@ -48,14 +48,14 @@ def print_final_info(package_name: str) -> None: print( "\n" f"Package <{package_name}> has been created." - "\nTo finish, you need to fill in the following fields in setup.py:\n" + "\nTo finish, you need to fill in the following fields in pyproject.toml:\n" " - author\n" " - author_email\n" " - description (this is a short description, as the long one is taken from README)\n" "You need to also fill in the author in LICENSE. You can find all those fields" "by searching for '[MAKEPACKAGE]' in the project.\n" "When you're done, the package is ready to be develop.\n" - "Check if you need all libraries from extras_require in setup.py - they will " + "Check if you need all libraries from extras_require in pyproject.toml - they will " "be installed in the development mode of the package (not after installing from " "the wheel file)." )