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