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)." )