1#-----------------------------------------------------------------------------
2# Copyright (c) 2005-2019, PyInstaller Development Team.
3#
4# Distributed under the terms of the GNU General Public License with exception
5# for distributing bootloader.
6#
7# The full license is in the file COPYING.txt, distributed with this software.
8#-----------------------------------------------------------------------------
9
10from PyInstaller.utils.hooks import collect_submodules, collect_data_files
11
12hiddenimports = collect_submodules('faker.providers')
13datas = (
14    collect_data_files('text_unidecode') +  # noqa: W504
15    collect_data_files('faker.providers', include_py_files=True)
16)
17