Skip to content

Commit

Permalink
fix setup.py command migrate taxref data sql files
Browse files Browse the repository at this point in the history
  • Loading branch information
joelclems committed Aug 21, 2023
1 parent 182f314 commit 42dac69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
version=version,
packages=setuptools.find_packages(where=".", include=["apptax*"]),
package_data={
"apptax": ["templates/*.html"],
"apptax": ["templates/*.html", ],
"apptax.migrations": ["alembic.ini", "script.py.mako", "data/*.sql"],
"apptax.taxonomie.commands.migrate_taxref": ["data/*.sql"],
"apptax.taxonomie.commands.migrate_taxref": ["data/*.sql", "data/*/*.sql"],
},
install_requires=(
list(open("requirements-common.in", "r")) + list(open("requirements-dependencies.in", "r"))
Expand Down

0 comments on commit 42dac69

Please sign in to comment.