From 130bd451d08cc8bc28deb069366ee1d5d3d306eb Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Wed, 4 Sep 2024 14:11:23 +0200 Subject: [PATCH] set setuptools packages find configuration (#1197) --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d44334c9..79e5349a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,6 +51,9 @@ Documentation = "https://aiobotocore.aio-libs.org" version = { attr = "aiobotocore.__version__" } readme = { file = ["README.rst", "CHANGES.rst"] } +[tool.setuptools.packages.find] +include = ["aiobotocore*"] + [tool.pytest.ini_options] asyncio_mode = "auto" cache_dir = "/tmp/pytest_aiobotocore_cache"