From 097611344222c50ab83da605306f18b4c5fd3841 Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Mon, 24 Apr 2023 22:26:38 +0200 Subject: [PATCH] Replace find with find_namespace in setuptools config. This removes a warning from setuptools Fixes: #1227 Change-Id: I81187e86038836ded39140076f25dc5f6bc1eb35 --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index de603cb1..7f9fa165 100644 --- a/setup.cfg +++ b/setup.cfg @@ -33,7 +33,7 @@ project_urls = Issue Tracker = https://github.com/sqlalchemy/alembic/issues/ [options] -packages = find: +packages = find_namespace: include_package_data = true zip_safe = false python_requires = >=3.7 @@ -53,6 +53,7 @@ tz = alembic = *.pyi, py.typed [options.packages.find] +include=alembic* exclude = test* examples* -- 2.47.2