The 2.0 version of the getpaid recipe is missing files that are assumed to
be in place by the setup.py file in the recipe. Specifically CHANGES.txt.
Processing getpaid.recipe.release-2.0.tar.gz
Running getpaid.recipe.release-2.0/setup.py -q bdist_egg --dist-dir
/tmp/easy_install-i_oLHe/getpaid.recipe.release-2.0/egg-dist-tmp-47AKcv
error: /tmp/easy_install-i_oLHe/getpaid.recipe.release-2.0/CHANGES.txt: No
such file or directory
It is in the 1.9 tarball but is missing in 2.0. I believe it is this
section in setup.py that causes the error, either code it more defensively
or add the missing file I suppose:
long_description = (
read('README.txt')
+ '\n' +
read('CHANGES.txt')
+ '\n' +
'Detailed Documentation\n'
'**********************\n'
+ '\n' +
read('getpaid', 'recipe', 'release', 'README.txt')
+ '\n' +
'Contributors\n'
'************\n'
+ '\n' +
read('CONTRIBUTORS.txt')
+ '\n' +
'Change history\n'
'**************\n'
+ '\n'
)
Original issue reported on code.google.com by Jorgen.M...@gmail.com on 27 Jan 2010 at 11:48
Original issue reported on code.google.com by
Jorgen.M...@gmail.com
on 27 Jan 2010 at 11:48