千家信息网

python poetry怎么创建项目

发表于:2025-01-21 作者:千家信息网编辑
千家信息网最后更新 2025年01月21日,这篇文章主要为大家展示了"python poetry怎么创建项目",内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下"python poetry怎么创建项目"这篇
千家信息网最后更新 2025年01月21日python poetry怎么创建项目

这篇文章主要为大家展示了"python poetry怎么创建项目",内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下"python poetry怎么创建项目"这篇文章吧。

1、可以通过命令poetrynew创建项目手脚架。

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

2、Poetry创建了example项目,生成了相应的文件夹和pyproject.toml,包括项目信息。

在现有项目中,通过命令poetryinit进行初始化。

➜  example poetry init This command will guide you through creating your pyproject.toml config.# 交互bash, 通过该交互bash填写项目信息。Package name [example]:  exampleVersion [0.1.0]:  0.0.8Description []:  example projectAuthor [so1n , n to skip]:  nLicense []:  Compatible Python versions [^3.7]:   Would you like to define your main dependencies interactively? (yes/no) [yes] noWould you like to define your development dependencies interactively? (yes/no) [yes] noGenerated file# 填写完项目信息后会生成以下内容, 之后会在刚才的路径创建pyproject.toml文件, 并写入。[tool.poetry]name = "example"version = "0.0.8"description = "example project"authors = ["Your Name "] [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

以上是"python poetry怎么创建项目"这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!

0