poetry
1.8.5
Poetry は、Python プロジェクトの依存関係を宣言、管理、インストールするのに役立ち、どこにでも適切なスタックを確保できます。
Poetry は、 setup.py
、 requirements.txt
、 setup.cfg
、 MANIFEST.in
およびPipfile
、単純なpyproject.toml
ベースのプロジェクト形式に置き換えます。
[ tool . poetry ]
name = " my-package "
version = " 0.1.0 "
description = " The description of the package "
license = " MIT "
authors = [
" Sébastien Eustace <[email protected]> "
]
repository = " https://github.com/python-poetry/poetry "
homepage = " https://python-poetry.org "
# README file(s) are used as the package description
readme = [ " README.md " , " LICENSE " ]
# Keywords (translated to tags on the package index)
keywords = [ " packaging " , " poetry " ]
[ tool . poetry . dependencies ]
# Compatible Python versions
python = " >=3.8 "
# Standard dependency with semver constraints
aiohttp = " ^3.8.1 "
# Dependency with extras
requests = { version = " ^2.28 " , extras = [ " security " ] }
# Version-specific dependencies with prereleases allowed
tomli = { version = " ^2.0.1 " , python = " <3.11 " , allow-prereleases = true }
# Git dependencies
cleo = { git = " https://github.com/python-poetry/cleo.git " , branch = " main " }
# Optional dependencies (installed by extras)
pendulum = { version = " ^2.1.2 " , optional = true }
# Dependency groups are supported for organizing your dependencies
[ tool . poetry . group . dev . dependencies ]
pytest = " ^7.1.2 "
pytest-cov = " ^3.0 "
# ...and can be installed only when explicitly requested
[ tool . poetry . group . docs ]
optional = true
[ tool . poetry . group . docs . dependencies ]
Sphinx = " ^5.1.1 "
# Python-style entrypoints and scripts are easily expressed
[ tool . poetry . scripts ]
my-script = " my_package:main "
Poetry は、install.python-poetry.org にある簡単なスクリプトを含む、複数のインストール方法をサポートしています。スクリプトの高度な使用法、別のインストール方法、CI のベスト プラクティスなど、完全なインストール手順については、完全なインストール ドキュメントを参照してください。
Poetry の現在のバージョン (開発ブランチおよび最近サポートが終了したバージョンも同様) のドキュメントは、公式 Web サイトから入手できます。
詩は大規模で複雑なプロジェクトであり、常に貢献者を必要としています。このプロジェクトに初めて参加する人のために、詩と詩のコアで取り組むために推奨される問題のリストが用意されています。完全な寄稿ドキュメントには、役立つガイダンスも含まれています。
JetBrains のツールのライセンスをサポートしていただきありがとうございます。