Hook for pygeoops
good first issuehook-request
**Which library is the hook for?**
`pygeoops`
**Have you gotten the library to work with pyinstaller?**
Yes, but it needs data files and metadata.
**Additional context**
If I do this code it works :
```
from PyInstaller.utils.hooks import collect_data_files
from PyInstaller.utils.hooks import copy_metadata
datas = copy_metadata('shapely') + collect_data_files('pygeoops')
```
1 条评论