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 vinay.sajip
Recipients alexis, eric.araujo, tarek, vinay.sajip
Date 2011-11-03.11:50:55
SpamBayes Score 6.8448355e-07
Marked as misclassified No
Message-id <1320321056.38.0.167356334613.issue13331@psf.upfronthosting.co.za>
In-reply-to
Content
If setup.cfg contains a line such as

[files]
resources =
    mydata/** = {purelib}

and the project contains a directory tree more than one level deep under mydata, e.g.

mydata
 |
 +-mydata1
 |   |
 |   +-data1.dat
 |
 +-mydata2
     |
     +-data2.dat

then the parsing correctly identifies all the things to copy, but the install_data step fails because it does not try to create intermediate directories for mydata1, mydata2 but tries to copy them as files using copy_file.
History
Date User Action Args
2011-11-03 11:50:56vinay.sajipsetrecipients: + vinay.sajip, tarek, eric.araujo, alexis
2011-11-03 11:50:56vinay.sajipsetmessageid: <1320321056.38.0.167356334613.issue13331@psf.upfronthosting.co.za>
2011-11-03 11:50:55vinay.sajiplinkissue13331 messages
2011-11-03 11:50:55vinay.sajipcreate