This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author erik.bray
Recipients alexis, eric.araujo, erik.bray, tarek
Date 2011-04-08.22:23:48
SpamBayes Score 6.612704e-07
Marked as misclassified No
Message-id <1302301429.27.0.797210396018.issue11805@psf.upfronthosting.co.za>
In-reply-to
Content
In distutils the package_data option can be supplied a list of glob patterns for each package.  distutils2 currently only supports one glob per package.

This could easily be fixed by simply allowing more than one `package_name = pattern` value in the package_data option.  For example:

package_data =
    mypackage = templates/*.html
    mypackage = static/css/*.css
    mypackage.subpackage = templates/*.html
    ...
History
Date User Action Args
2011-04-08 22:23:49erik.braysetrecipients: + erik.bray, tarek, eric.araujo, alexis
2011-04-08 22:23:49erik.braysetmessageid: <1302301429.27.0.797210396018.issue11805@psf.upfronthosting.co.za>
2011-04-08 22:23:48erik.braylinkissue11805 messages
2011-04-08 22:23:48erik.braycreate