Skip to content

Commit

Permalink
Add include_package_data
Browse files Browse the repository at this point in the history
  • Loading branch information
amandine-sahl committed Oct 29, 2024
1 parent 05a8296 commit 5a37ffe
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@
version=version,
packages=setuptools.find_packages(where=".", include=["apptax*"]),
package_data={
"apptax": ["**/templates/**/*.html"],
"apptax": ["**/static/**/*"],
"apptax.migrations": ["alembic.ini", "script.py.mako", "data/*.sql"],
"apptax": ["**/templates/**/*.html", "**/static/**/*"],
"apptax.migrations": ["alembic.ini", "script.py.mako", "data/*.sql"],
"apptax.taxonomie.commands.migrate_taxref": ["data/*.sql", "data/*/*.sql"],
},
include_package_data=True,
install_requires=(
Expand Down

0 comments on commit 5a37ffe

Please sign in to comment.