From f7f2c123829b3ec0c381fe60687b1db8584dcfec Mon Sep 17 00:00:00 2001 From: Bryan Brancotte Date: Mon, 15 Jan 2024 10:10:54 +0100 Subject: [PATCH] explicitly list package data --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index 3effcea..9bd50f2 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,12 @@ "Framework :: Django :: 4.0", "Framework :: Django :: 4.1", ], + package_data={ + 'crispy_forms_bootstrap2': [ + 'templates/bootstrap/*', + 'templates/bootstrap/layout/*', + ], + }, include_package_data=True, zip_safe=False, )