-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
45 lines (41 loc) · 1.39 KB
/
setup.cfg
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
[metadata]
name = SuperDuperMetroid
version = 2.3.3
author = Samuel Roy
description = A Super Metroid patching utility
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/SolventMercury/Super-Duper-Metroid
project_urls =
Bug Tracker = https://github.com/SolventMercury/super-Duper-Metroid/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
zip_safe = False
package_dir =
= src
packages = find:
python_requires = >=3.8
[options.package_data]
* = *.bin, Patches/*/*.ips
[options.packages.find]
where = src
#
# Entry Points for PyInstaller
# ---------------------------------
[options.entry_points]
pyinstaller40 =
# .. _hook_registration:
#
# **Hook registration**: This entry point refers to a function
# that will be invoked with no parameters. It must return a
# sequence of strings, each element of which provides an
# additional absolute path to search for hooks. This is equivalent
# to passing the ``additional-hooks-dir`` `command-line option
# <https://pyinstaller.readthedocs.io/en/stable/usage.html#what-to-bundle-where-to-search>`_
# to PyInstaller for each string in the sequence.
#
# In this project, the function is ``get_hook_dirs``.
hook-dirs = SuperDuperMetroid.__pyinstaller:get_hook_dirs