METADATA 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. Metadata-Version: 2.1
  2. Name: pyinstaller-hooks-contrib
  3. Version: 2021.3
  4. Summary: Community maintained hooks for PyInstaller
  5. Home-page: https://github.com/pyinstaller/pyinstaller-hooks-contrib
  6. Maintainer: Legorooj
  7. Maintainer-email: legorooj@protonmail.com
  8. License: UNKNOWN
  9. Download-URL: https://pypi.org/project/pyinstaller-hooks-contrib
  10. Keywords: pyinstaller development hooks
  11. Platform: UNKNOWN
  12. Classifier: Intended Audience :: Developers
  13. Classifier: Topic :: Software Development :: Build Tools
  14. Classifier: Natural Language :: English
  15. Classifier: Operating System :: OS Independent
  16. Classifier: Programming Language :: Python
  17. Classifier: Programming Language :: Python :: 3
  18. Description-Content-Type: text/markdown
  19. # `pyinstaller-hooks-contrib`: The PyInstaller community hooks repository
  20. What happens when (your?) package doesn't work with PyInstaller? Say you have data files that you need at runtime?
  21. PyInstaller doesn't bundle those. Your package requires others which PyInstaller can't see? How do you fix that?
  22. In summary, a "hook" file extends PyInstaller to adapt it to the special needs and methods used by a Python package.
  23. The word "hook" is used for two kinds of files. A runtime hook helps the bootloader to launch an app, setting up the
  24. environment. A package hook (there are several types of those) tells PyInstaller what to include in the final app -
  25. such as the data files and (hidden) imports mentioned above.
  26. This repository is a collection of hooks for many packages, and allows PyInstaller to work with these packages
  27. seamlessly.
  28. ## Installation
  29. `pyinstaller-hooks-contrib` is automatically installed when you install PyInstaller, or can be installed with pip:
  30. ```commandline
  31. pip install -U pyinstaller-hooks-contrib
  32. ```
  33. ## I can't see a hook for `a-package`
  34. Either `a-package` works fine without a hook, or no-one has contributed hooks.
  35. If you'd like to add a hook, or view information about hooks,
  36. please see [the wiki](https://github.com/pyinstaller/pyinstaller-hooks-contrib/wiki).
  37. ## I want to help!
  38. Please start by providing pull requests and helping solve issues.
  39. Please read [news/README.txt](https://github.com/pyinstaller/pyinstaller-hooks-contrib/blob/master/news/README.txt) before submitting you pull request.
  40. If you plan to contribute frequently or are interested in becoming a developer,
  41. send an email to `legorooj@protonmail.com` to let us know.