On Thu, Mar 22, 2012 at 11:55 AM, Ottavio <[email protected]> wrote: > I think I found a bug in pyramid_celery. I am writing here, because I see > Sontek is also here. > > There is a problem with README.md, pyramid_celery wants to install it but it > is not found. > > By installing with pip I get > > $ /tmp/xxx/bin/pip install pyramid_celery > Downloading/unpacking pyramid-celery > Downloading pyramid_celery-0.1.tar.gz > Running setup.py egg_info for package pyramid-celery > Traceback (most recent call last): > File "<string>", line 14, in <module> > File "/tmp/xxx/build/pyramid-celery/setup.py", line 6, in <module> > README = open(os.path.join(here, 'README.md')).read() > IOError: [Errno 2] No such file or directory: > '/tmp/xxx/build/pyramid-celery/README.md' > Complete output from command python setup.py egg_info: > Traceback (most recent call last): > > File "<string>", line 14, in <module> > > File "/tmp/xxx/build/pyramid-celery/setup.py", line 6, in <module> > > README = open(os.path.join(here, 'README.md')).read() > > IOError: [Errno 2] No such file or directory: > '/tmp/xxx/build/pyramid-celery/README.md' > > The same error appears with easy_install > > $ /tmp/xxx/bin/easy_install pyramid_celery > Searching for pyramid-celery > Reading http://pypi.python.org/simple/pyramid_celery/ > Reading https://github.com/sontek/pyramid_celery > Best match: pyramid-celery 0.1 > Downloading > http://pypi.python.org/packages/source/p/pyramid_celery/pyramid_celery-0.1.tar.gz#md5=baa97d10518394186a0f391da88efdec > Processing pyramid_celery-0.1.tar.gz > Running pyramid_celery-0.1/setup.py -q bdist_egg --dist-dir > /tmp/easy_install-OI2CQs/pyramid_celery-0.1/egg-dist-tmp-QPZOvC > error: /tmp/easy_install-OI2CQs/pyramid_celery-0.1/README.md: No such file > or directory > > In fact README.md is not present. I strongly suspect a similar problem will > also be given by CHANGES.TXT. I checked the tarball and those files are not > present. >
Yup. distutils/distribute only take care of README.txt A good idea is to add a MANIFEST.in to include extra files. You should add an issue and/or pull request > -- > You received this message because you are subscribed to the Google Groups > "pylons-discuss" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/pylons-discuss/-/SnwP9tIKEyEJ. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/pylons-discuss?hl=en. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
