Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions makepackage/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)."
)
Expand Down
Loading