Pythonスクリプトのパッケージ化
pipxでインストールできるスタンドアロンのCLIアプリ/パッケージの作成、インストール手順までを解説しているページ。 As of August 2024, Poetry is a notable build backend that does not use the [project] table, it uses the [tool.poetry] table instead. Also, the setuptools build backend supports both the [project] table, and the older format in setup.cfg or setup.py.
パッケージ管理やパッケージの作成にPoetryを利用している場合 [project]テーブルは[tool.poetry]に全て置き換えてよい
以下はproject.scriptテーブルの例
code:toml
blabla = "bla"
build-backend = "poetry.core.masonry.api"
コマンド化については以下のページを見る