hook-boto.py 786 B

12345678910111213141516171819202122232425
  1. # ------------------------------------------------------------------
  2. # Copyright (c) 2020 PyInstaller Development Team.
  3. #
  4. # This file is distributed under the terms of the GNU General Public
  5. # License (version 2.0 or later).
  6. #
  7. # The full license is available in LICENSE, distributed with
  8. # this software.
  9. #
  10. # SPDX-License-Identifier: GPL-2.0-or-later
  11. # ------------------------------------------------------------------
  12. #
  13. # Boto3, the next version of Boto, is now stable and recommended for general
  14. # use.
  15. #
  16. # Boto is an integrated interface to current and future infrastructural
  17. # services offered by Amazon Web Services.
  18. #
  19. # http://boto.readthedocs.org/en/latest/
  20. #
  21. # Tested with boto 2.38.0
  22. from PyInstaller.utils.hooks import collect_data_files
  23. datas = collect_data_files('boto')