From 205175b30a96d8be73326f649b6bb88fd83dc1e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20P=C3=A9pin?= Date: Mon, 14 Sep 2020 20:52:14 +0200 Subject: [PATCH] Include templates in the sdist/bdist archives MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `include_package_data` has to be set to `True` in setup.py. I thought adding the templates folder in MANIFEST.in was enough 🤔 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index b3d00dc..151543a 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,7 @@ setuptools.setup( long_description_content_type="text/markdown", url="https://git.eleves.ens.fr/klub-dev-ens/authens", packages=setuptools.find_packages(), + include_package_data=True, classifiers=[ "Environment :: Web Environment", "Framework :: Django",