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

Clean up configuration parsing #438

Open ronaldoussoren opened 2 years ago

ronaldoussoren commented 2 years ago

The parsing of configuration is currently somewhat of a mess with a mix of global an per-target configuration. A side effect of this is that the configuration format somewhat supports multiple targets, but the code only accepts a single target.

To fix this:

Actually introducing support for multiple targets can be done later, after further cleanup to the code base (#428, #431).