changeset 227:f8f9019425c3

install: fixed package data installation
author Goffi <goffi@goffi.org>
date Wed, 08 Jan 2020 14:31:46 +0100
parents c270f1b01112
children 3195484abd82
files setup.py
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Tue Jan 07 22:17:03 2020 +0100
+++ b/setup.py	Wed Jan 08 14:31:46 2020 +0100
@@ -61,10 +61,9 @@
     ],
     install_requires=[],
     setup_requires=["setuptools_scm"] if is_dev_version else [],
-    # FIXME: .mo files in i18n should be generated on install
-    package_data={'sat_templates': ['i18n']},
     use_scm_version=sat_templates_dev_version if is_dev_version else False,
     packages=find_packages(),
+    include_package_data=True,
     zip_safe=False,
     python_requires=">=3.7",
 )