admin管理员组文章数量:1277875
I'm using this pyproject.toml configuration file:
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mypackage"
version = "0.0.1"
dependencies = [
]
[tool.setuptools.packages.find]
# All the following settings are optional:
where = ["src"] # ["."] by default
include = ["*"] # ["*"] by default
exclude = ["pkg2.tests*"] # empty by default
namespaces = false # true by default
How can I use exclude so that it excludes the pkg2.tests subpackage?
The directory structure of the project is shown below:
本文标签: pythonexcluding packages in pyprojecttomlStack Overflow
版权声明:本文标题:python - excluding packages in pyproject.toml - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741298077a2370932.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论