提问人:Hussam 提问时间:8/25/2023 更新时间:8/25/2023 访问量:135
如何使用 pdm 构建 python 包并包含外部依赖项
How to build python package with pdm and include external dependencies
问:
我正在尝试使用 PDM 工具构建轮子,但是当我构建软件包时,不包括外部依赖项(例如 semver)。这意味着无论谁使用我的工具,都需要安装这些依赖项。有没有办法使用 PDM 将外部依赖项与我的包一起打包?
答: 暂无答案
评论
requirement.txt
pdm add <dependency>
pyproject.toml
pdm add
pdm build