summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2023-04-30 14:44:01 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2023-04-30 14:44:01 +0000
commit3336e3719184e35487d7ff42c5fd90f3b8babc27 (patch)
tree7ad2082dac2ed2a3a4e9e91879a55bae40e40c79
parentb0fd144686ac01d40fcae806657a37d6cc2d5fba (diff)
parent097611344222c50ab83da605306f18b4c5fd3841 (diff)
downloadalembic-3336e3719184e35487d7ff42c5fd90f3b8babc27.tar.gz
Merge "Replace find with find_namespace in setuptools config." into main
-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*