溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么用python poetry創(chuàng)建項(xiàng)目

發(fā)布時(shí)間:2022-05-23 16:55:49 來(lái)源:億速云 閱讀:125 作者:iii 欄目:大數(shù)據(jù)

這篇“怎么用python poetry創(chuàng)建項(xiàng)目”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“怎么用python poetry創(chuàng)建項(xiàng)目”文章吧。

1、可以通過(guò)命令poetrynew創(chuàng)建項(xiàng)目手腳架。

? poetry new example
? tree
.
└── example
    ├── example
    │   └── __init__.py
    ├── pyproject.toml
    ├── README.rst
    └── tests
        ├── __init__.py
        └── test_example.py
 
3 directories, 5 files

2、Poetry創(chuàng)建了example項(xiàng)目,生成了相應(yīng)的文件夾和pyproject.toml,包括項(xiàng)目信息。

在現(xiàn)有項(xiàng)目中,通過(guò)命令poetryinit進(jìn)行初始化。

?  example poetry init
 
This command will guide you through creating your pyproject.toml config.
# 交互bash, 通過(guò)該交互bash填寫項(xiàng)目信息。
Package name [example]:  example
Version [0.1.0]:  0.0.8
Description []:  example project
Author [so1n <qaz6803609@163.com>, n to skip]:  n
License []:  
Compatible Python versions [^3.7]:  
 
Would you like to define your main dependencies interactively? (yes/no) [yes] no
Would you like to define your development dependencies interactively? (yes/no) [yes] no
Generated file
# 填寫完項(xiàng)目信息后會(huì)生成以下內(nèi)容, 之后會(huì)在剛才的路徑創(chuàng)建pyproject.toml文件, 并寫入。
[tool.poetry]
name = "example"
version = "0.0.8"
description = "example project"
authors = ["Your Name <you@example.com>"]
 
[tool.poetry.dependencies]
python = "^3.7"
 
[tool.poetry.dev-dependencies]
 
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
 
 
Do you confirm generation? (yes/no) [yes] yes

以上就是關(guān)于“怎么用python poetry創(chuàng)建項(xiàng)目”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI