Skip to content
Closed
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 docs/docs/pyproject.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,10 +224,10 @@ This section describes the scripts or executables that will be installed when in

```toml
[tool.poetry.scripts]
poetry = 'poetry.console:run'
my_package_cli = 'my_package.console:run'
```

Here, we will have the `poetry` script installed which will execute `console.run` in the `poetry` package.
Here, we will have the `my_package_cli` script installed which will execute `run` in the `console` module in the `my_package` package.

!!!note

Expand Down