Skip to content

Instantly share code, notes, and snippets.

@menghan
Created December 30, 2013 06:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save menghan/8178588 to your computer and use it in GitHub Desktop.
Save menghan/8178588 to your computer and use it in GitHub Desktop.
setuptools bug paste
(st)menghan@MenghanMac:/tmp/t$ python setup.py install
running install
running bdist_egg
running egg_info
writing requirements to ExampleProject.egg-info/requires.txt
writing ExampleProject.egg-info/PKG-INFO
writing namespace_packages to ExampleProject.egg-info/namespace_packages.txt
writing top-level names to ExampleProject.egg-info/top_level.txt
writing dependency_links to ExampleProject.egg-info/dependency_links.txt
WARNING: example is a namespace package, but its __init__.py does
not declare_namespace(); setuptools 0.7 will REQUIRE this!
(See the setuptools manual under "Namespace Packages" for details.)
reading manifest file 'ExampleProject.egg-info/SOURCES.txt'
writing manifest file 'ExampleProject.egg-info/SOURCES.txt'
installing library code to build/bdist.macosx-10.9-x86_64/egg
running install_lib
running build_py
creating build/bdist.macosx-10.9-x86_64/egg
creating build/bdist.macosx-10.9-x86_64/egg/example
copying build/lib/example/__init__.py -> build/bdist.macosx-10.9-x86_64/egg/example
creating build/bdist.macosx-10.9-x86_64/egg/example/project
copying build/lib/example/project/__init__.py -> build/bdist.macosx-10.9-x86_64/egg/example/project
byte-compiling build/bdist.macosx-10.9-x86_64/egg/example/__init__.py to __init__.pyc
byte-compiling build/bdist.macosx-10.9-x86_64/egg/example/project/__init__.py to __init__.pyc
creating build/bdist.macosx-10.9-x86_64/egg/EGG-INFO
copying ExampleProject.egg-info/PKG-INFO -> build/bdist.macosx-10.9-x86_64/egg/EGG-INFO
copying ExampleProject.egg-info/SOURCES.txt -> build/bdist.macosx-10.9-x86_64/egg/EGG-INFO
copying ExampleProject.egg-info/dependency_links.txt -> build/bdist.macosx-10.9-x86_64/egg/EGG-INFO
copying ExampleProject.egg-info/namespace_packages.txt -> build/bdist.macosx-10.9-x86_64/egg/EGG-INFO
copying ExampleProject.egg-info/not-zip-safe -> build/bdist.macosx-10.9-x86_64/egg/EGG-INFO
copying ExampleProject.egg-info/requires.txt -> build/bdist.macosx-10.9-x86_64/egg/EGG-INFO
copying ExampleProject.egg-info/top_level.txt -> build/bdist.macosx-10.9-x86_64/egg/EGG-INFO
creating 'dist/ExampleProject-1.0-py2.7.egg' and adding 'build/bdist.macosx-10.9-x86_64/egg' to it
removing 'build/bdist.macosx-10.9-x86_64/egg' (and everything under it)
Processing ExampleProject-1.0-py2.7.egg
removing '/Users/menghan/.virtualenvs/st/lib/python2.7/site-packages/ExampleProject-1.0-py2.7.egg' (and everything under it)
creating /Users/menghan/.virtualenvs/st/lib/python2.7/site-packages/ExampleProject-1.0-py2.7.egg
Extracting ExampleProject-1.0-py2.7.egg to /Users/menghan/.virtualenvs/st/lib/python2.7/site-packages
ExampleProject 1.0 is already the active version in easy-install.pth
Installed /Users/menghan/.virtualenvs/st/lib/python2.7/site-packages/ExampleProject-1.0-py2.7.egg
Processing dependencies for ExampleProject==1.0
Searching for sh
Best match: sh [unknown version]
Doing git clone from https://github.com/amoffat/sh.git to /var/folders/gj/_d62k5y924d16y4g4jg5pn780000gn/T/easy_install-q1QCyH/sh.git
Processing sh.git
Writing /var/folders/gj/_d62k5y924d16y4g4jg5pn780000gn/T/easy_install-q1QCyH/sh.git/setup.cfg
Running setup.py -q bdist_egg --dist-dir /var/folders/gj/_d62k5y924d16y4g4jg5pn780000gn/T/easy_install-q1QCyH/sh.git/egg-dist-tmp-or2vKo
warning: no previously-included files matching '*.pyc' found anywhere in distribution
zip_safe flag not set; analyzing archive contents...
sh: module references __file__
sh: module references __path__
Adding sh 1.09 to easy-install.pth file
Installed /Users/menghan/.virtualenvs/st/lib/python2.7/site-packages/sh-1.09-py2.7.egg
Searching for pep8
Reading https://pypi.python.org/simple/pep8/
Best match: pep8 1.4.6
Downloading https://pypi.python.org/packages/source/p/pep8/pep8-1.4.6.tar.gz#md5=a03bb494859e87b42601b61b1b043a0c
Processing pep8-1.4.6.tar.gz
Writing /var/folders/gj/_d62k5y924d16y4g4jg5pn780000gn/T/easy_install-kXsLjM/pep8-1.4.6/setup.cfg
Running pep8-1.4.6/setup.py -q bdist_egg --dist-dir /var/folders/gj/_d62k5y924d16y4g4jg5pn780000gn/T/easy_install-kXsLjM/pep8-1.4.6/egg-dist-tmp-39uJiT
warning: no previously-included files matching '*.pyc' found under directory 'docs'
warning: no previously-included files matching '*.pyo' found under directory 'docs'
warning: no previously-included files matching '*.pyc' found under directory 'testsuite'
warning: no previously-included files matching '*.pyo' found under directory 'testsuite'
no previously-included directories found matching 'docs/_build'
Adding pep8 1.4.6 to easy-install.pth file
Installing pep8 script to /Users/menghan/.virtualenvs/st/bin
Installed /Users/menghan/.virtualenvs/st/lib/python2.7/site-packages/pep8-1.4.6-py2.7.egg
Finished processing dependencies for ExampleProject==1.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment