Setup Poetry#
Poetry adalah tool manajemen dependensi dan package Python yang memungkinkan kamu memanajemen dependensi dalam file pyproject.toml
dan menginstalnya dengan satu perintah. Poetry juga memungkinkan kamu membuat proyek Python baru dengan struktur direktori yang disarankan.
Instalasi Poetry#
Untuk menginstal Poetry, kamu memerlukan pipx
.
pipx install poetry
Untuk mengupdate Poetry ke versi terbaru, jalankan perintah berikut:
pipx upgrade poetry
Untuk menguninstall Poetry:
pipx uninstall poetry
Poetry Cheat Sheet#
Command |
Description |
---|---|
|
Creates a new Python project in a new directory. |
|
Initializes a new Poetry project in the current directory. |
|
Adds a new package to the project’s dependencies. |
|
Removes a package from the project’s dependencies. |
|
Shows information about the project’s packages. |
|
Updates the project’s dependencies. |
|
Installs the project’s dependencies. |
|
Runs a command in the virtual environment. |
|
Spawns a shell within the virtual environment. |
|
Builds the project package. |
|
Publishes the project package to PyPI. |
|
Bumps the version of the project. |
|
Configures Poetry settings. |
|
Clears Poetry’s cache. |