canvas
canvas copied to clipboard
forgot to push files while uploading to pypi
Ohai,
You forgot to do a "stdist" before pushing the release to pypi, therefor pip/easy_install can't download it :/
A correct command could be:
python setup.py sdist upload
Have a nice day,
I think I have done it now. Can you check?
It's good now, files are uploaded, but we have a new bug now (and I think it's my fault).
(ve)psycojoker@dolgoff /tmp/canvas pip install canvas
Downloading/unpacking canvas
Downloading canvas-0.1.tar.gz
Running setup.py egg_info for package canvas
Traceback (most recent call last):
File "<string>", line 14, in <module>
File "/tmp/canvas/ve/build/canvas/setup.py", line 11, in <module>
long_description=open("README.md").read(),
IOError: [Errno 2] No such file or directory: 'README.md'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 14, in <module>
File "/tmp/canvas/ve/build/canvas/setup.py", line 11, in <module>
long_description=open("README.md").read(),
IOError: [Errno 2] No such file or directory: 'README.md'
----------------------------------------
Command python setup.py egg_info failed with error code 1 in /tmp/canvas/ve/build/canvas
Storing complete log in /home/psycojoker/.pip/pip.log
Btw, if you want to test, do this in a dir:
virtualenv --no-site-packages --distribute ve
source ve/bin/activate
pip install canvas
And if you want to get out of the virtualenv:
deactivate