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