On 07 Sep 2014, at 13:07, pyramidX <[email protected]> wrote:
> In what cases would you add something you've put in setup.py into one of > pyramid.includes or config.include()? I see that my sample applications work > fine even though some of the things specified in setup.py haven't been > 'included' (relatively new to Python). The simplest answer here is that you would add an include-statement or .ini entry if the documentation of the package says you should. Generally speaking that is used by pyramid-specific packages that need to hook into pyramid's configuration, for example to register a tween or a renderer. Wichert. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pylons-discuss. For more options, visit https://groups.google.com/d/optout.
