ronaldoussoren / py2app

py2app is a Python setuptools command which will allow you to make standalone Mac OS X application bundles and plugins from Python scripts.
Other
342 stars 36 forks source link

Design extension API for "recipes" #439

Open ronaldoussoren opened 2 years ago

ronaldoussoren commented 2 years ago

The interface for entry points is currently very minimal and not well specified (basically anything goes, leading to dependencies on internal details in some recipes).

Design an better API for entry points and move existing recipes to that API. Probably use entry_points from importlib.metadata to look up recipes, to enable having external recipes (alter on)

Considerations: