It would be neat if the app manifest could be created entirely from the reST docstring (recommended format by PEP 287) ```py class Foobanizer(ASAppRepresentative): """ Generate random foobanized strings on the fly. :bundleName: Foobanizer :bundleId: app.aliceos.foobanizer :bundleDir: {AS_APPS_DIR}Foobanizer.aosapp/ :bundleAuthor: AliceOS Developers :bundleVersion: 1.0.0 """ ``` The docstring can be accessed via the `__doc__` attribute.
It would be neat if the app manifest could be created entirely from the reST docstring (recommended format by PEP 287)
The docstring can be accessed via the
__doc__attribute.