forked from randovania/open-dread-rando
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
49 lines (44 loc) · 1.49 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
46
47
48
49
[metadata]
name = open-dread-rando
description = An open source randomizer patcher for Metroid Dread.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/randovania/open-dread-rando
author = Henrique Gemignani
classifiers =
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Development Status :: 3 - Alpha
Intended Audience :: Developers
Programming Language :: Python :: 3.9
[options]
packages = open_dread_rando
install_requires =
mercury-engine-data-structures>=0.15.0
jsonschema>=4.0.0
ips.py>=0.1.2
keystone-engine>=0.9.2
include_package_data = True
zip_safe = False
python_requires = >=3.9
[options.extras_require]
test =
pytest
pytest-cov
pytest-mock
#
# 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 = open_dread_rando.__pyinstaller:get_hook_dirs