summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2023-04-17 23:01:25 -0400
committerGitHub <noreply@github.com>2023-04-17 22:01:25 -0500
commit3f00e4d8c618b363bc8421aae586c897602f5af5 (patch)
treef021f076ee2c5d55e0159ed3666847dfb2e1deaa /pyproject.toml
parent2f917b0e9b17828d7f5c9203f6d52416d4bca475 (diff)
downloadcryptography-3f00e4d8c618b363bc8421aae586c897602f5af5.tar.gz
Switch to an allow-list (#8747)
Right now the rust subdirectory gets processed for packages, which never exist. This can break some development workflows.
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml5
1 files changed, 1 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 8024179a9..8cf73cc44 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -60,10 +60,7 @@ package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
-exclude = [
- "_cffi_src",
- "_cffi_src.*",
-]
+include = ["cryptography*"]
[tool.setuptools.dynamic]
version = {attr = "cryptography.__version__"}