setup.py: add include_package_data for templates (#42590)

This commit is contained in:
Thomas NOËL 2020-05-07 01:24:47 +02:00
parent 80f245ced8
commit 83c1062b94
1 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,8 @@ setup(
version=get_version(),
author="Entr'ouvert",
author_email='info@entrouvert.com',
packages=find_packages(),
packages=find_packages(os.path.dirname(__file__) or '.'),
include_package_data=True,
install_requires=[
'suds-jurko'
],