me@mybox ~/myusername/blah $ python setup.py sdist --formats=gztar,zip,bztar,ztar,tar running sdist error: package directory 'filenameX' does not existturns out the problem was, my setup.py had the following line:
py_modules = ['filenameX.py'],This should be:
py_modules = ['filenameX'],FIXED IT! Yay! Now it proceeds nicely.
No comments:
Post a Comment