From: Federico Caselli Date: Mon, 24 Apr 2023 20:26:38 +0000 (+0200) Subject: Replace find with find_namespace in setuptools config. X-Git-Tag: rel_1_11_0~12^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=097611344222c50ab83da605306f18b4c5fd3841;p=thirdparty%2Fsqlalchemy%2Falembic.git Replace find with find_namespace in setuptools config. This removes a warning from setuptools Fixes: #1227 Change-Id: I81187e86038836ded39140076f25dc5f6bc1eb35 --- 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*