summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2023-04-24 22:26:38 +0200
committerFederico Caselli <cfederico87@gmail.com>2023-04-24 22:26:38 +0200
commit097611344222c50ab83da605306f18b4c5fd3841 (patch)
treeb6b137771ab4a9f7239ab83324f582813509a731
parent197e001ee92f2672458b1c2abaa2b66098241d53 (diff)
downloadalembic-097611344222c50ab83da605306f18b4c5fd3841.tar.gz
Replace find with find_namespace in setuptools config.
This removes a warning from setuptools Fixes: #1227 Change-Id: I81187e86038836ded39140076f25dc5f6bc1eb35
-rw-r--r--setup.cfg3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index de603cb..7f9fa16 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*