Skip to content

Instantly share code, notes, and snippets.

@natefoo
Last active March 4, 2016 21:52
Show Gist options
  • Save natefoo/dae16c8669388cd20406 to your computer and use it in GitHub Desktop.
Save natefoo/dae16c8669388cd20406 to your computer and use it in GitHub Desktop.
Building, installing, and using manylinux1 psycopg2 wheels
#### psycopg2 test on debian:7 2.7.3
INSERT 0 1
id was: 1
SELECT 1
SELECT returned: (1, 'debian:7')
#### end psycopg2 test on debian:7 2.7.3
#### psycopg2 test on ubuntu:12.04 2.7.3
INSERT 0 1
id was: 2
SELECT 1
SELECT returned: (2, 'ubuntu:12.04')
#### end psycopg2 test on ubuntu:12.04 2.7.3
#### psycopg2 test on debian:8 2.7.9
INSERT 0 1
id was: 3
SELECT 1
SELECT returned: (3, 'debian:8')
#### end psycopg2 test on debian:8 2.7.9
#### psycopg2 test on debian:8 3.4.2
INSERT 0 1
id was: 4
SELECT 1
SELECT returned: (4, 'debian:8')
#### end psycopg2 test on debian:8 3.4.2
#### psycopg2 test on ubuntu:14.04 2.7.6
INSERT 0 1
id was: 5
SELECT 1
SELECT returned: (5, 'ubuntu:14.04')
#### end psycopg2 test on ubuntu:14.04 2.7.6
#### psycopg2 test on ubuntu:14.04 3.4.3
INSERT 0 1
id was: 6
SELECT 1
SELECT returned: (6, 'ubuntu:14.04')
#### end psycopg2 test on ubuntu:14.04 3.4.3
#### psycopg2 test on centos:6 2.6.6
INSERT 0 1
id was: 7
SELECT 1
SELECT returned: (7, 'centos:6')
#### end psycopg2 test on centos:6 2.6.6
#### psycopg2 test on centos:6 2.7.5
INSERT 0 1
id was: 8
SELECT 1
SELECT returned: (8, 'centos:6')
#### end psycopg2 test on centos:6 2.7.5
#### psycopg2 test on centos:6 3.3.2
INSERT 0 1
id was: 9
SELECT 1
SELECT returned: (9, 'centos:6')
#### end psycopg2 test on centos:6 3.3.2
#### psycopg2 test on centos:7 2.7.5
INSERT 0 1
id was: 10
SELECT 1
SELECT returned: (10, 'centos:7')
#### end psycopg2 test on centos:7 2.7.5
#### psycopg2 test on centos:7 3.3.2
INSERT 0 1
id was: 11
SELECT 1
SELECT returned: (11, 'centos:7')
#### end psycopg2 test on centos:7 3.3.2
#### psycopg2 test on fedora:21 2.7.8
INSERT 0 1
id was: 12
SELECT 1
SELECT returned: (12, 'fedora:21')
#### end psycopg2 test on fedora:21 2.7.8
#### psycopg2 test on fedora:21 3.4.1
INSERT 0 1
id was: 13
SELECT 1
SELECT returned: (13, 'fedora:21')
#### end psycopg2 test on fedora:21 3.4.1
#### psycopg2 test on opensuse:13.2 2.7.8
INSERT 0 1
id was: 14
SELECT 1
SELECT returned: (14, 'opensuse:13.2')
#### end psycopg2 test on opensuse:13.2 2.7.8
#### psycopg2 test on opensuse:13.2 3.4.1
INSERT 0 1
id was: 15
SELECT 1
SELECT returned: (15, 'opensuse:13.2')
#### end psycopg2 test on opensuse:13.2 3.4.1
#!/usr/bin/env python
from __future__ import print_function
import os
import sys
import psycopg2
image = os.environ['IMAGE']
version = sys.version.split(None, 1)[0]
print('#### psycopg2 test on %s %s' % (image, version))
conn = psycopg2.connect("user=nate password=pass host=10.1.1.1 dbname=psycopg2_test sslmode=require")
cur = conn.cursor()
cur.execute("INSERT INTO test (data) VALUES (%s) RETURNING id", (image,))
print(cur.statusmessage)
lastid = cur.fetchone()[0]
print('id was: %s' % lastid)
cur.execute("SELECT * FROM test WHERE id=%s", (lastid,))
print(cur.statusmessage)
print('SELECT returned: %s' % str(cur.fetchone()))
conn.commit()
cur.close()
conn.close()
print('#### end psycopg2 test on %s %s' % (image, version))
#!/bin/bash
set -e
[ ! -d pip-clean ] && git clone https://github.com/pypa/pip.git pip-clean
CLONE="git clone pip-clean pip"
RUN="docker run --rm -v `pwd`:/host/ --entrypoint=/bin/sh"
PIP_PY2="cd /host/pip && python2.7 setup.py install"
PIP_PY3="cd /host/pip && python3 setup.py install"
PIP_CLEAN="cd /host && rm -rf pip"
PSYCOPG_PY2="pip2.7 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python2.7 psycopg_test.py | tee -a psycopg_test.log"
PSYCOPG_PY3="pip3 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python3 psycopg_test.py | tee -a psycopg_test.log"
APT_PY2="DEBIAN_FRONTEND=noninteractive apt-get install -y python python-setuptools"
APT_PY3="DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-setuptools"
function run()
{
local image=$1
local cmd=$2
cmd="export IMAGE=$image && $cmd"
echo "$CLONE && $RUN $image -c \"$cmd\""
$CLONE && $RUN $image -c "$cmd"
}
for image in debian:7 ubuntu:12.04; do
run $image "apt-get -qq update && $APT_PY2 && $PIP_PY2 && $PIP_CLEAN && $PSYCOPG_PY2"
done
for image in debian:8 ubuntu:14.04; do
run $image "apt-get -qq update && $APT_PY2 && $PIP_PY2 && $APT_PY3 && $PIP_PY3 && $PIP_CLEAN && $PSYCOPG_PY2 && $PSYCOPG_PY3"
done
image='centos:6'
run $image "yum -y install centos-release-SCL && yum install -y python-setuptools python27 python27-setuptools python33 python33-setuptools && . /opt/rh/python27/enable && . /opt/rh/python33/enable && cd /host/pip && python2.6 setup.py install && $PIP_PY2 && $PIP_PY3 && $PIP_CLEAN && pip2.6 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python2.6 psycopg_test.py | tee -a psycopg_test.log && $PSYCOPG_PY2 && $PSYCOPG_PY3"
image='centos:7'
run $image "rpm -U https://www.softwarecollections.org/en/scls/rhscl/python33/epel-7-x86_64/download/rhscl-python33-epel-7-x86_64.noarch.rpm && yum -y install python-setuptools python33 && . /opt/rh/python33/enable && $PIP_PY2 && $PIP_PY3 && $PIP_CLEAN && $PSYCOPG_PY2 && $PSYCOPG_PY3"
YUM_PY2="yum -y install python-setuptools"
YUM_PY3="yum -y install python3 python3-setuptools"
image="fedora:21"
run $image "$YUM_PY2 && $PIP_PY2 && $YUM_PY3 && $PIP_PY3 && $PIP_CLEAN && $PSYCOPG_PY2 && $PSYCOPG_PY3"
image="opensuse:13.2"
run $image "zypper -n in python python-setuptools python3 python3-setuptools && $PIP_PY2 && $PIP_PY3 && $PIP_CLEAN && $PSYCOPG_PY2 && $PSYCOPG_PY3"
image="alpine"
run $image "apk update && apk add python python3 && cd /host && tar zxf setuptools-20.2.2.tar.gz && cd setuptools-20.2.2 && python2.7 setup.py install && python3 setup.py install && cd /host && rm -rf setuptools-20.2.2 && $PIP_PY2 && $PIP_PY3 && $PIP_CLEAN && pip2.7 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 || true && pip3 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 || true"
This file has been truncated, but you can view the full file.
git clone pip-clean pip && docker run --rm -v /home/nate/psycopg_test:/host/ --entrypoint=/bin/sh debian:7 -c "export IMAGE=debian:7 && apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get install -y python python-setuptools && cd /host/pip && python2.7 setup.py install && cd /host && rm -rf pip && pip2.7 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python2.7 psycopg_test.py | tee -a psycopg_test.log"
Cloning into 'pip'...
done.
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
file libexpat1 libgpm2 libmagic1 libncursesw5 libsqlite3-0 libssl1.0.0
mime-support python-minimal python-pkg-resources python2.7 python2.7-minimal
Suggested packages:
gpm python-doc python-tk python-distribute python-distribute-doc
python2.7-doc binutils binfmt-support
The following NEW packages will be installed:
file libexpat1 libgpm2 libmagic1 libncursesw5 libsqlite3-0 libssl1.0.0
mime-support python python-minimal python-pkg-resources python-setuptools
python2.7 python2.7-minimal
0 upgraded, 14 newly installed, 0 to remove and 0 not upgraded.
Need to get 7575 kB of archives.
After this operation, 24.3 MB of additional disk space will be used.
Get:1 http://security.debian.org/ wheezy/updates/main libssl1.0.0 amd64 1.0.1e-2+deb7u20 [1263 kB]
Get:2 http://httpredir.debian.org/debian/ wheezy/main libncursesw5 amd64 5.9-10 [141 kB]
Get:3 http://httpredir.debian.org/debian/ wheezy/main libmagic1 amd64 5.11-2+deb7u8 [205 kB]
Get:4 http://httpredir.debian.org/debian/ wheezy/main libgpm2 amd64 1.20.4-6 [35.8 kB]
Get:5 http://httpredir.debian.org/debian/ wheezy/main libsqlite3-0 amd64 3.7.13-1+deb7u2 [454 kB]
Get:6 http://httpredir.debian.org/debian/ wheezy/main file amd64 5.11-2+deb7u8 [53.4 kB]
Get:7 http://httpredir.debian.org/debian/ wheezy/main libexpat1 amd64 2.1.0-1+deb7u2 [139 kB]
Get:8 http://httpredir.debian.org/debian/ wheezy/main mime-support all 3.52-1+deb7u1 [35.5 kB]
Get:9 http://httpredir.debian.org/debian/ wheezy/main python2.7-minimal amd64 2.7.3-6+deb7u2 [1785 kB]
Get:10 http://httpredir.debian.org/debian/ wheezy/main python2.7 amd64 2.7.3-6+deb7u2 [2728 kB]
Get:11 http://httpredir.debian.org/debian/ wheezy/main python-minimal all 2.7.3-4+deb7u1 [42.8 kB]
Get:12 http://httpredir.debian.org/debian/ wheezy/main python all 2.7.3-4+deb7u1 [181 kB]
Get:13 http://httpredir.debian.org/debian/ wheezy/main python-pkg-resources all 0.6.24-1 [63.6 kB]
Get:14 http://httpredir.debian.org/debian/ wheezy/main python-setuptools all 0.6.24-1 [449 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 7575 kB in 0s (8747 kB/s)
Selecting previously unselected package libncursesw5:amd64.
(Reading database ... 6717 files and directories currently installed.)
Unpacking libncursesw5:amd64 (from .../libncursesw5_5.9-10_amd64.deb) ...
Selecting previously unselected package libssl1.0.0:amd64.
Unpacking libssl1.0.0:amd64 (from .../libssl1.0.0_1.0.1e-2+deb7u20_amd64.deb) ...
Selecting previously unselected package libgpm2:amd64.
Unpacking libgpm2:amd64 (from .../libgpm2_1.20.4-6_amd64.deb) ...
Selecting previously unselected package libmagic1:amd64.
Unpacking libmagic1:amd64 (from .../libmagic1_5.11-2+deb7u8_amd64.deb) ...
Selecting previously unselected package libsqlite3-0:amd64.
Unpacking libsqlite3-0:amd64 (from .../libsqlite3-0_3.7.13-1+deb7u2_amd64.deb) ...
Selecting previously unselected package libexpat1:amd64.
Unpacking libexpat1:amd64 (from .../libexpat1_2.1.0-1+deb7u2_amd64.deb) ...
Selecting previously unselected package file.
Unpacking file (from .../file_5.11-2+deb7u8_amd64.deb) ...
Selecting previously unselected package mime-support.
Unpacking mime-support (from .../mime-support_3.52-1+deb7u1_all.deb) ...
Selecting previously unselected package python2.7-minimal.
Unpacking python2.7-minimal (from .../python2.7-minimal_2.7.3-6+deb7u2_amd64.deb) ...
Selecting previously unselected package python2.7.
Unpacking python2.7 (from .../python2.7_2.7.3-6+deb7u2_amd64.deb) ...
Selecting previously unselected package python-minimal.
Unpacking python-minimal (from .../python-minimal_2.7.3-4+deb7u1_all.deb) ...
Selecting previously unselected package python.
Unpacking python (from .../python_2.7.3-4+deb7u1_all.deb) ...
Selecting previously unselected package python-pkg-resources.
Unpacking python-pkg-resources (from .../python-pkg-resources_0.6.24-1_all.deb) ...
Selecting previously unselected package python-setuptools.
Unpacking python-setuptools (from .../python-setuptools_0.6.24-1_all.deb) ...
Setting up libncursesw5:amd64 (5.9-10) ...
Setting up libssl1.0.0:amd64 (1.0.1e-2+deb7u20) ...
Setting up libgpm2:amd64 (1.20.4-6) ...
Setting up libmagic1:amd64 (5.11-2+deb7u8) ...
Setting up libsqlite3-0:amd64 (3.7.13-1+deb7u2) ...
Setting up libexpat1:amd64 (2.1.0-1+deb7u2) ...
Setting up file (5.11-2+deb7u8) ...
Setting up mime-support (3.52-1+deb7u1) ...
update-alternatives: using /usr/bin/see to provide /usr/bin/view (view) in auto mode
Setting up python2.7-minimal (2.7.3-6+deb7u2) ...
Setting up python2.7 (2.7.3-6+deb7u2) ...
Setting up python-minimal (2.7.3-4+deb7u1) ...
Setting up python (2.7.3-4+deb7u1) ...
Setting up python-pkg-resources (0.6.24-1) ...
Setting up python-setuptools (0.6.24-1) ...
running install
Checking .pth file support in /usr/local/lib/python2.7/dist-packages/
/usr/bin/python2.7 -E -c pass
TEST PASSED: /usr/local/lib/python2.7/dist-packages/ appears to support .pth files
running bdist_egg
running egg_info
creating pip.egg-info
writing requirements to pip.egg-info/requires.txt
writing pip.egg-info/PKG-INFO
writing top-level names to pip.egg-info/top_level.txt
writing dependency_links to pip.egg-info/dependency_links.txt
writing entry points to pip.egg-info/entry_points.txt
writing manifest file 'pip.egg-info/SOURCES.txt'
reading manifest file 'pip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
writing manifest file 'pip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/pip
copying pip/__init__.py -> build/lib.linux-x86_64-2.7/pip
copying pip/__main__.py -> build/lib.linux-x86_64-2.7/pip
copying pip/basecommand.py -> build/lib.linux-x86_64-2.7/pip
copying pip/baseparser.py -> build/lib.linux-x86_64-2.7/pip
copying pip/cmdoptions.py -> build/lib.linux-x86_64-2.7/pip
copying pip/download.py -> build/lib.linux-x86_64-2.7/pip
copying pip/exceptions.py -> build/lib.linux-x86_64-2.7/pip
copying pip/index.py -> build/lib.linux-x86_64-2.7/pip
copying pip/locations.py -> build/lib.linux-x86_64-2.7/pip
copying pip/pep425tags.py -> build/lib.linux-x86_64-2.7/pip
copying pip/status_codes.py -> build/lib.linux-x86_64-2.7/pip
copying pip/wheel.py -> build/lib.linux-x86_64-2.7/pip
creating build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/ipaddress.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/pyparsing.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/re-vendor.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/retrying.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/six.py -> build/lib.linux-x86_64-2.7/pip/_vendor
creating build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/__init__.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/completion.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/download.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/freeze.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/hash.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/help.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/install.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/list.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/search.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/show.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/uninstall.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/wheel.py -> build/lib.linux-x86_64-2.7/pip/commands
creating build/lib.linux-x86_64-2.7/pip/compat
copying pip/compat/__init__.py -> build/lib.linux-x86_64-2.7/pip/compat
copying pip/compat/dictconfig.py -> build/lib.linux-x86_64-2.7/pip/compat
creating build/lib.linux-x86_64-2.7/pip/models
copying pip/models/__init__.py -> build/lib.linux-x86_64-2.7/pip/models
copying pip/models/index.py -> build/lib.linux-x86_64-2.7/pip/models
creating build/lib.linux-x86_64-2.7/pip/operations
copying pip/operations/__init__.py -> build/lib.linux-x86_64-2.7/pip/operations
copying pip/operations/freeze.py -> build/lib.linux-x86_64-2.7/pip/operations
creating build/lib.linux-x86_64-2.7/pip/req
copying pip/req/__init__.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_file.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_install.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_set.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_uninstall.py -> build/lib.linux-x86_64-2.7/pip/req
creating build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/__init__.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/appdirs.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/build.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/deprecation.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/encoding.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/filesystem.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/hashes.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/logging.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/outdated.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/setuptools_build.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/ui.py -> build/lib.linux-x86_64-2.7/pip/utils
creating build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/__init__.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/bazaar.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/git.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/mercurial.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/subversion.py -> build/lib.linux-x86_64-2.7/pip/vcs
creating build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
creating build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/_cmd.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/adapter.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/controller.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/filewrapper.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/heuristics.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/serialize.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/wrapper.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
creating build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/ansi.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/ansitowin32.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/initialise.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/win32.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/winterm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
creating build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/database.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/index.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/locators.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/manifest.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/metadata.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/resources.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/scripts.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/util.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/version.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/wheel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/constants.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/html5parser.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/ihatexml.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/inputstream.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/sanitizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/tokenizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
creating build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/linklockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/mkdirlockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/pidlockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/sqlitelockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/symlinklockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
creating build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/__about__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/_compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/_structures.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/requirements.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/specifiers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/version.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
creating build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources
copying pip/_vendor/pkg_resources/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources
creating build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/bar.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/counter.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/helpers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/spinner.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/adapters.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/api.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/auth.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/certs.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/cookies.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/exceptions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/hooks.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/models.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/sessions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/status_codes.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/structures.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
creating build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/file_cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/redis_cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
creating build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/misc.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/shutil.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/sysconfig.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/tarfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/lint.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/optionaltags.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/sanitizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/whitespace.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/htmlserializer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/sax.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/dom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/dom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/etree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/genshistream.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/pulldom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/datrie.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/py.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages
copying pip/_vendor/requests/packages/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5freq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardetect.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardistribution.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/constants.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/cp949prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escsm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jisfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jpcntx.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/latin1prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcssm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sjisprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/universaldetector.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/utf8prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/_collections.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connection.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/exceptions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/fields.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/filepost.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/request.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/response.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/six.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/connection.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/request.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/response.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/retry.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/url.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/distlib/t32.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/t64.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/w32.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/w64.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/requests/cacert.pem -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/distlib/_backport/sysconfig.cfg -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/__init__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/__main__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/basecommand.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/baseparser.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/cmdoptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/download.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/exceptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/index.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/locations.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/pep425tags.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/status_codes.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/wheel.py -> build/bdist.linux-x86_64/egg/pip
creating build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/ipaddress.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/pyparsing.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/re-vendor.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/retrying.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor
creating build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/_cmd.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/adapter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/controller.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/filewrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/heuristics.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/serialize.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/wrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/file_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/redis_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
creating build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/ansi.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/ansitowin32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/initialise.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/win32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/winterm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/database.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/index.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/locators.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/manifest.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/metadata.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/resources.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/scripts.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/util.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/wheel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/misc.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/shutil.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/sysconfig.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/tarfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/sysconfig.cfg -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/t32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/t64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/w32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/w64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/html5parser.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/ihatexml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/inputstream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/tokenizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/lint.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/optionaltags.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/whitespace.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer/htmlserializer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters/sax.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/genshistream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/pulldom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/datrie.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/py.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
creating build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/linklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/mkdirlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/pidlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/sqlitelockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/symlinklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
creating build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/__about__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/_compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/_structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/requirements.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/specifiers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
creating build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
copying build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
creating build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/bar.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/counter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/helpers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/spinner.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/adapters.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/api.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/auth.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/certs.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/cookies.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/hooks.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/models.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/sessions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/status_codes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/big5freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/big5prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/chardetect.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/chardistribution.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/charsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/cp949prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/escprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/escsm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euckrprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euctwprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/jisfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/jpcntx.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/latin1prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcssm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sjisprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/universaldetector.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/utf8prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/_collections.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/fields.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/filepost.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/retry.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/url.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/cacert.pem -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/__init__.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/completion.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/download.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/freeze.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/hash.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/help.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/install.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/list.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/search.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/show.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/uninstall.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/wheel.py -> build/bdist.linux-x86_64/egg/pip/commands
creating build/bdist.linux-x86_64/egg/pip/compat
copying build/lib.linux-x86_64-2.7/pip/compat/__init__.py -> build/bdist.linux-x86_64/egg/pip/compat
copying build/lib.linux-x86_64-2.7/pip/compat/dictconfig.py -> build/bdist.linux-x86_64/egg/pip/compat
creating build/bdist.linux-x86_64/egg/pip/models
copying build/lib.linux-x86_64-2.7/pip/models/__init__.py -> build/bdist.linux-x86_64/egg/pip/models
copying build/lib.linux-x86_64-2.7/pip/models/index.py -> build/bdist.linux-x86_64/egg/pip/models
creating build/bdist.linux-x86_64/egg/pip/operations
copying build/lib.linux-x86_64-2.7/pip/operations/__init__.py -> build/bdist.linux-x86_64/egg/pip/operations
copying build/lib.linux-x86_64-2.7/pip/operations/freeze.py -> build/bdist.linux-x86_64/egg/pip/operations
creating build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/__init__.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_file.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_install.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_set.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_uninstall.py -> build/bdist.linux-x86_64/egg/pip/req
creating build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/__init__.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/appdirs.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/deprecation.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/encoding.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/filesystem.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/hashes.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/logging.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/outdated.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/setuptools_build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/ui.py -> build/bdist.linux-x86_64/egg/pip/utils
creating build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/__init__.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/bazaar.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/git.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/mercurial.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/subversion.py -> build/bdist.linux-x86_64/egg/pip/vcs
byte-compiling build/bdist.linux-x86_64/egg/pip/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/__main__.py to __main__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/basecommand.py to basecommand.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/baseparser.py to baseparser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/cmdoptions.py to cmdoptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/locations.py to locations.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/pep425tags.py to pep425tags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/ipaddress.py to ipaddress.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pyparsing.py to pyparsing.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/re-vendor.py to re-vendor.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/retrying.py to retrying.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/_cmd.py to _cmd.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/adapter.py to adapter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/cache.py to cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/controller.py to controller.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/filewrapper.py to filewrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/heuristics.py to heuristics.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/serialize.py to serialize.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/wrapper.py to wrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/file_cache.py to file_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/redis_cache.py to redis_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansi.py to ansi.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansitowin32.py to ansitowin32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/initialise.py to initialise.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/win32.py to win32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/winterm.py to winterm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/database.py to database.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/locators.py to locators.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/manifest.py to manifest.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/metadata.py to metadata.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/resources.py to resources.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/scripts.py to scripts.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/util.py to util.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/misc.py to misc.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/shutil.py to shutil.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/sysconfig.py to sysconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/tarfile.py to tarfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/html5parser.py to html5parser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/ihatexml.py to ihatexml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/inputstream.py to inputstream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/tokenizer.py to tokenizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py to alphabeticalattributes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/inject_meta_charset.py to inject_meta_charset.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/lint.py to lint.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/optionaltags.py to optionaltags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/whitespace.py to whitespace.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/htmlserializer.py to htmlserializer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/sax.py to sax.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py to etree_lxml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/genshistream.py to genshistream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/lxmletree.py to lxmletree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/pulldom.py to pulldom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/datrie.py to datrie.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/py.py to py.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/linklockfile.py to linklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/mkdirlockfile.py to mkdirlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/pidlockfile.py to pidlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/sqlitelockfile.py to sqlitelockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/symlinklockfile.py to symlinklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__about__.py to __about__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_compat.py to _compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_structures.py to _structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/requirements.py to requirements.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/specifiers.py to specifiers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/bar.py to bar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/counter.py to counter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/helpers.py to helpers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/spinner.py to spinner.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/adapters.py to adapters.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/api.py to api.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/auth.py to auth.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/certs.py to certs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/cookies.py to cookies.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/hooks.py to hooks.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/models.py to models.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/sessions.py to sessions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/structures.py to structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5freq.py to big5freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5prober.py to big5prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardetect.py to chardetect.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardistribution.py to chardistribution.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetgroupprober.py to charsetgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetprober.py to charsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/codingstatemachine.py to codingstatemachine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/cp949prober.py to cp949prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escprober.py to escprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escsm.py to escsm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/eucjpprober.py to eucjpprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrfreq.py to euckrfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrprober.py to euckrprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwfreq.py to euctwfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwprober.py to euctwprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312freq.py to gb2312freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312prober.py to gb2312prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/hebrewprober.py to hebrewprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jisfreq.py to jisfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jpcntx.py to jpcntx.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py to langbulgarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py to langcyrillicmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langgreekmodel.py to langgreekmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhebrewmodel.py to langhebrewmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhungarianmodel.py to langhungarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langthaimodel.py to langthaimodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/latin1prober.py to latin1prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcharsetprober.py to mbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py to mbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcssm.py to mbcssm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcharsetprober.py to sbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py to sbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sjisprober.py to sjisprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/universaldetector.py to universaldetector.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/utf8prober.py to utf8prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/_collections.py to _collections.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connectionpool.py to connectionpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/fields.py to fields.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/filepost.py to filepost.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/poolmanager.py to poolmanager.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/appengine.py to appengine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py to ntlmpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py to pyopenssl.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py to ordered_dict.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py to _implementation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/retry.py to retry.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py to ssl_.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/timeout.py to timeout.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/url.py to url.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/completion.py to completion.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/hash.py to hash.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/help.py to help.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/install.py to install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/list.py to list.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/search.py to search.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/show.py to show.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/uninstall.py to uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/dictconfig.py to dictconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_file.py to req_file.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_install.py to req_install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_set.py to req_set.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_uninstall.py to req_uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/appdirs.py to appdirs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/build.py to build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/deprecation.py to deprecation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/encoding.py to encoding.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/filesystem.py to filesystem.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/hashes.py to hashes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/logging.py to logging.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/outdated.py to outdated.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/setuptools_build.py to setuptools_build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/ui.py to ui.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/bazaar.py to bazaar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/git.py to git.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/mercurial.py to mercurial.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/subversion.py to subversion.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
creating dist
creating 'dist/pip-8.1.0.dev0-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing pip-8.1.0.dev0-py2.7.egg
creating /usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg
Extracting pip-8.1.0.dev0-py2.7.egg to /usr/local/lib/python2.7/dist-packages
Adding pip 8.1.0.dev0 to easy-install.pth file
Installing pip script to /usr/local/bin
Installing pip2.7 script to /usr/local/bin
Installing pip2 script to /usr/local/bin
Installed /usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg
Processing dependencies for pip==8.1.0.dev0
Finished processing dependencies for pip==8.1.0.dev0
Ignoring indexes: https://pypi.python.org/simple
Collecting psycopg2
1 location(s) to search for versions of psycopg2:
* https://depot.galaxyproject.org/nate/wheelhouse
Skipping link https://depot.galaxyproject.org/nate/wheelhouse (from -f); not a file
Getting page https://depot.galaxyproject.org/nate/wheelhouse
Looking up "https://depot.galaxyproject.org/nate/wheelhouse" in the cache
No cache entry available
Starting new HTTPS connection (1): depot.galaxyproject.org
/usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:315: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning.
SNIMissingWarning
/usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:120: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
"GET /nate/wheelhouse HTTP/1.1" 301 184
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse"
Caching permanant redirect
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/" in the cache
No cache entry available
"GET /nate/wheelhouse/ HTTP/1.1" 200 None
Analyzing links from page https://depot.galaxyproject.org/nate/wheelhouse/
Skipping link https://depot.galaxyproject.org/nate/ (from https://depot.galaxyproject.org/nate/wheelhouse/); not a file
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Found link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/), version: 2.6.1
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp35-cp35m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Using version 2.6.1 (newest of versions: 2.6.1)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl" in the cache
No cache entry available
"GET /nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl HTTP/1.1" 200 1981638
Downloading https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (2.0MB)
Downloading from URL https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/)
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl"
Caching due to etag
Installing collected packages: psycopg2
Successfully installed psycopg2-2.6.1
Cleaning up...
#### psycopg2 test on debian:7 2.7.3
INSERT 0 1
id was: 1
SELECT 1
SELECT returned: (1, 'debian:7')
#### end psycopg2 test on debian:7 2.7.3
git clone pip-clean pip && docker run --rm -v /home/nate/psycopg_test:/host/ --entrypoint=/bin/sh ubuntu:12.04 -c "export IMAGE=ubuntu:12.04 && apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get install -y python python-setuptools && cd /host/pip && python2.7 setup.py install && cd /host && rm -rf pip && pip2.7 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python2.7 psycopg_test.py | tee -a psycopg_test.log"
Cloning into 'pip'...
done.
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
file libexpat1 libmagic1 libsqlite3-0 mime-support python-pkg-resources
python2.7
Suggested packages:
python-doc python-tk python-distribute python-distribute-doc python2.7-doc
binutils
The following NEW packages will be installed:
file libexpat1 libmagic1 libsqlite3-0 mime-support python
python-pkg-resources python-setuptools python2.7
0 upgraded, 9 newly installed, 0 to remove and 0 not upgraded.
Need to get 4095 kB of archives.
After this operation, 14.8 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ precise-updates/main libsqlite3-0 amd64 3.7.9-2ubuntu1.2 [349 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ precise-updates/main libexpat1 amd64 2.0.1-7.2ubuntu1.2 [131 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ precise-updates/main libmagic1 amd64 5.09-2ubuntu0.6 [218 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ precise-updates/main file amd64 5.09-2ubuntu0.6 [20.0 kB]
Get:5 http://archive.ubuntu.com/ubuntu/ precise-updates/main mime-support all 3.51-1ubuntu1.1 [30.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ precise-updates/main python2.7 amd64 2.7.3-0ubuntu3.8 [2676 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ precise-updates/main python amd64 2.7.3-0ubuntu2.2 [168 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ precise/main python-pkg-resources all 0.6.24-1ubuntu1 [63.1 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ precise/main python-setuptools all 0.6.24-1ubuntu1 [441 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 4095 kB in 0s (4823 kB/s)
Selecting previously unselected package libsqlite3-0.
(Reading database ... 7563 files and directories currently installed.)
Unpacking libsqlite3-0 (from .../libsqlite3-0_3.7.9-2ubuntu1.2_amd64.deb) ...
Selecting previously unselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-7.2ubuntu1.2_amd64.deb) ...
Selecting previously unselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.09-2ubuntu0.6_amd64.deb) ...
Selecting previously unselected package file.
Unpacking file (from .../file_5.09-2ubuntu0.6_amd64.deb) ...
Selecting previously unselected package mime-support.
Unpacking mime-support (from .../mime-support_3.51-1ubuntu1.1_all.deb) ...
Selecting previously unselected package python2.7.
Unpacking python2.7 (from .../python2.7_2.7.3-0ubuntu3.8_amd64.deb) ...
Selecting previously unselected package python.
Unpacking python (from .../python_2.7.3-0ubuntu2.2_amd64.deb) ...
Selecting previously unselected package python-pkg-resources.
Unpacking python-pkg-resources (from .../python-pkg-resources_0.6.24-1ubuntu1_all.deb) ...
Selecting previously unselected package python-setuptools.
Unpacking python-setuptools (from .../python-setuptools_0.6.24-1ubuntu1_all.deb) ...
Setting up libsqlite3-0 (3.7.9-2ubuntu1.2) ...
Setting up libexpat1 (2.0.1-7.2ubuntu1.2) ...
Setting up libmagic1 (5.09-2ubuntu0.6) ...
Setting up file (5.09-2ubuntu0.6) ...
Setting up mime-support (3.51-1ubuntu1.1) ...
update-alternatives: using /usr/bin/see to provide /usr/bin/view (view) in auto mode.
Setting up python2.7 (2.7.3-0ubuntu3.8) ...
Setting up python (2.7.3-0ubuntu2.2) ...
Setting up python-pkg-resources (0.6.24-1ubuntu1) ...
Setting up python-setuptools (0.6.24-1ubuntu1) ...
Processing triggers for libc-bin ...
ldconfig deferred processing now taking place
running install
Checking .pth file support in /usr/local/lib/python2.7/dist-packages/
/usr/bin/python2.7 -E -c pass
TEST PASSED: /usr/local/lib/python2.7/dist-packages/ appears to support .pth files
running bdist_egg
running egg_info
creating pip.egg-info
writing requirements to pip.egg-info/requires.txt
writing pip.egg-info/PKG-INFO
writing top-level names to pip.egg-info/top_level.txt
writing dependency_links to pip.egg-info/dependency_links.txt
writing entry points to pip.egg-info/entry_points.txt
writing manifest file 'pip.egg-info/SOURCES.txt'
reading manifest file 'pip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
writing manifest file 'pip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/pip
copying pip/__init__.py -> build/lib.linux-x86_64-2.7/pip
copying pip/__main__.py -> build/lib.linux-x86_64-2.7/pip
copying pip/basecommand.py -> build/lib.linux-x86_64-2.7/pip
copying pip/baseparser.py -> build/lib.linux-x86_64-2.7/pip
copying pip/cmdoptions.py -> build/lib.linux-x86_64-2.7/pip
copying pip/download.py -> build/lib.linux-x86_64-2.7/pip
copying pip/exceptions.py -> build/lib.linux-x86_64-2.7/pip
copying pip/index.py -> build/lib.linux-x86_64-2.7/pip
copying pip/locations.py -> build/lib.linux-x86_64-2.7/pip
copying pip/pep425tags.py -> build/lib.linux-x86_64-2.7/pip
copying pip/status_codes.py -> build/lib.linux-x86_64-2.7/pip
copying pip/wheel.py -> build/lib.linux-x86_64-2.7/pip
creating build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/ipaddress.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/pyparsing.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/re-vendor.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/retrying.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/six.py -> build/lib.linux-x86_64-2.7/pip/_vendor
creating build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/__init__.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/completion.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/download.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/freeze.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/hash.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/help.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/install.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/list.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/search.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/show.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/uninstall.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/wheel.py -> build/lib.linux-x86_64-2.7/pip/commands
creating build/lib.linux-x86_64-2.7/pip/compat
copying pip/compat/__init__.py -> build/lib.linux-x86_64-2.7/pip/compat
copying pip/compat/dictconfig.py -> build/lib.linux-x86_64-2.7/pip/compat
creating build/lib.linux-x86_64-2.7/pip/models
copying pip/models/__init__.py -> build/lib.linux-x86_64-2.7/pip/models
copying pip/models/index.py -> build/lib.linux-x86_64-2.7/pip/models
creating build/lib.linux-x86_64-2.7/pip/operations
copying pip/operations/__init__.py -> build/lib.linux-x86_64-2.7/pip/operations
copying pip/operations/freeze.py -> build/lib.linux-x86_64-2.7/pip/operations
creating build/lib.linux-x86_64-2.7/pip/req
copying pip/req/__init__.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_file.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_install.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_set.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_uninstall.py -> build/lib.linux-x86_64-2.7/pip/req
creating build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/__init__.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/appdirs.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/build.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/deprecation.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/encoding.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/filesystem.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/hashes.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/logging.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/outdated.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/setuptools_build.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/ui.py -> build/lib.linux-x86_64-2.7/pip/utils
creating build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/__init__.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/bazaar.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/git.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/mercurial.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/subversion.py -> build/lib.linux-x86_64-2.7/pip/vcs
creating build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
creating build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/_cmd.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/adapter.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/controller.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/filewrapper.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/heuristics.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/serialize.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/wrapper.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
creating build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/ansi.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/ansitowin32.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/initialise.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/win32.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/winterm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
creating build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/database.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/index.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/locators.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/manifest.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/metadata.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/resources.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/scripts.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/util.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/version.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/wheel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/constants.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/html5parser.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/ihatexml.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/inputstream.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/sanitizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/tokenizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
creating build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/linklockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/mkdirlockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/pidlockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/sqlitelockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/symlinklockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
creating build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/__about__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/_compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/_structures.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/requirements.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/specifiers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/version.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
creating build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources
copying pip/_vendor/pkg_resources/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources
creating build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/bar.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/counter.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/helpers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/spinner.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/adapters.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/api.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/auth.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/certs.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/cookies.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/exceptions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/hooks.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/models.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/sessions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/status_codes.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/structures.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
creating build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/file_cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/redis_cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
creating build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/misc.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/shutil.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/sysconfig.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/tarfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/lint.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/optionaltags.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/sanitizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/whitespace.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/htmlserializer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/sax.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/dom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/dom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/etree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/genshistream.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/pulldom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/datrie.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/py.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages
copying pip/_vendor/requests/packages/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5freq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardetect.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardistribution.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/constants.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/cp949prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escsm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jisfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jpcntx.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/latin1prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcssm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sjisprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/universaldetector.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/utf8prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/_collections.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connection.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/exceptions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/fields.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/filepost.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/request.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/response.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/six.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/connection.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/request.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/response.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/retry.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/url.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/distlib/t32.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/t64.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/w32.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/w64.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/requests/cacert.pem -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/distlib/_backport/sysconfig.cfg -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/__init__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/__main__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/basecommand.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/baseparser.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/cmdoptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/download.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/exceptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/index.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/locations.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/pep425tags.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/status_codes.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/wheel.py -> build/bdist.linux-x86_64/egg/pip
creating build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/ipaddress.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/pyparsing.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/re-vendor.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/retrying.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor
creating build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/_cmd.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/adapter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/controller.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/filewrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/heuristics.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/serialize.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/wrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/file_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/redis_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
creating build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/ansi.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/ansitowin32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/initialise.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/win32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/winterm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/database.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/index.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/locators.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/manifest.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/metadata.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/resources.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/scripts.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/util.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/wheel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/misc.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/shutil.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/sysconfig.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/tarfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/sysconfig.cfg -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/t32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/t64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/w32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/w64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/html5parser.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/ihatexml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/inputstream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/tokenizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/lint.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/optionaltags.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/whitespace.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer/htmlserializer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters/sax.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/genshistream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/pulldom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/datrie.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/py.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
creating build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/linklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/mkdirlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/pidlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/sqlitelockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/symlinklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
creating build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/__about__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/_compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/_structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/requirements.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/specifiers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
creating build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
copying build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
creating build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/bar.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/counter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/helpers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/spinner.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/adapters.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/api.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/auth.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/certs.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/cookies.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/hooks.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/models.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/sessions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/status_codes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/big5freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/big5prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/chardetect.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/chardistribution.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/charsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/cp949prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/escprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/escsm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euckrprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euctwprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/jisfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/jpcntx.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/latin1prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcssm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sjisprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/universaldetector.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/utf8prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/_collections.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/fields.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/filepost.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/retry.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/url.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/cacert.pem -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/__init__.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/completion.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/download.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/freeze.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/hash.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/help.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/install.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/list.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/search.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/show.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/uninstall.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/wheel.py -> build/bdist.linux-x86_64/egg/pip/commands
creating build/bdist.linux-x86_64/egg/pip/compat
copying build/lib.linux-x86_64-2.7/pip/compat/__init__.py -> build/bdist.linux-x86_64/egg/pip/compat
copying build/lib.linux-x86_64-2.7/pip/compat/dictconfig.py -> build/bdist.linux-x86_64/egg/pip/compat
creating build/bdist.linux-x86_64/egg/pip/models
copying build/lib.linux-x86_64-2.7/pip/models/__init__.py -> build/bdist.linux-x86_64/egg/pip/models
copying build/lib.linux-x86_64-2.7/pip/models/index.py -> build/bdist.linux-x86_64/egg/pip/models
creating build/bdist.linux-x86_64/egg/pip/operations
copying build/lib.linux-x86_64-2.7/pip/operations/__init__.py -> build/bdist.linux-x86_64/egg/pip/operations
copying build/lib.linux-x86_64-2.7/pip/operations/freeze.py -> build/bdist.linux-x86_64/egg/pip/operations
creating build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/__init__.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_file.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_install.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_set.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_uninstall.py -> build/bdist.linux-x86_64/egg/pip/req
creating build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/__init__.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/appdirs.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/deprecation.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/encoding.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/filesystem.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/hashes.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/logging.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/outdated.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/setuptools_build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/ui.py -> build/bdist.linux-x86_64/egg/pip/utils
creating build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/__init__.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/bazaar.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/git.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/mercurial.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/subversion.py -> build/bdist.linux-x86_64/egg/pip/vcs
byte-compiling build/bdist.linux-x86_64/egg/pip/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/__main__.py to __main__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/basecommand.py to basecommand.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/baseparser.py to baseparser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/cmdoptions.py to cmdoptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/locations.py to locations.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/pep425tags.py to pep425tags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/ipaddress.py to ipaddress.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pyparsing.py to pyparsing.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/re-vendor.py to re-vendor.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/retrying.py to retrying.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/_cmd.py to _cmd.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/adapter.py to adapter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/cache.py to cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/controller.py to controller.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/filewrapper.py to filewrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/heuristics.py to heuristics.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/serialize.py to serialize.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/wrapper.py to wrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/file_cache.py to file_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/redis_cache.py to redis_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansi.py to ansi.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansitowin32.py to ansitowin32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/initialise.py to initialise.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/win32.py to win32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/winterm.py to winterm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/database.py to database.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/locators.py to locators.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/manifest.py to manifest.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/metadata.py to metadata.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/resources.py to resources.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/scripts.py to scripts.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/util.py to util.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/misc.py to misc.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/shutil.py to shutil.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/sysconfig.py to sysconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/tarfile.py to tarfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/html5parser.py to html5parser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/ihatexml.py to ihatexml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/inputstream.py to inputstream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/tokenizer.py to tokenizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py to alphabeticalattributes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/inject_meta_charset.py to inject_meta_charset.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/lint.py to lint.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/optionaltags.py to optionaltags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/whitespace.py to whitespace.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/htmlserializer.py to htmlserializer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/sax.py to sax.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py to etree_lxml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/genshistream.py to genshistream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/lxmletree.py to lxmletree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/pulldom.py to pulldom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/datrie.py to datrie.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/py.py to py.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/linklockfile.py to linklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/mkdirlockfile.py to mkdirlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/pidlockfile.py to pidlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/sqlitelockfile.py to sqlitelockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/symlinklockfile.py to symlinklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__about__.py to __about__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_compat.py to _compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_structures.py to _structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/requirements.py to requirements.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/specifiers.py to specifiers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/bar.py to bar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/counter.py to counter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/helpers.py to helpers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/spinner.py to spinner.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/adapters.py to adapters.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/api.py to api.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/auth.py to auth.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/certs.py to certs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/cookies.py to cookies.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/hooks.py to hooks.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/models.py to models.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/sessions.py to sessions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/structures.py to structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5freq.py to big5freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5prober.py to big5prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardetect.py to chardetect.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardistribution.py to chardistribution.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetgroupprober.py to charsetgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetprober.py to charsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/codingstatemachine.py to codingstatemachine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/cp949prober.py to cp949prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escprober.py to escprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escsm.py to escsm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/eucjpprober.py to eucjpprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrfreq.py to euckrfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrprober.py to euckrprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwfreq.py to euctwfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwprober.py to euctwprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312freq.py to gb2312freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312prober.py to gb2312prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/hebrewprober.py to hebrewprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jisfreq.py to jisfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jpcntx.py to jpcntx.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py to langbulgarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py to langcyrillicmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langgreekmodel.py to langgreekmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhebrewmodel.py to langhebrewmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhungarianmodel.py to langhungarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langthaimodel.py to langthaimodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/latin1prober.py to latin1prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcharsetprober.py to mbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py to mbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcssm.py to mbcssm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcharsetprober.py to sbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py to sbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sjisprober.py to sjisprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/universaldetector.py to universaldetector.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/utf8prober.py to utf8prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/_collections.py to _collections.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connectionpool.py to connectionpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/fields.py to fields.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/filepost.py to filepost.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/poolmanager.py to poolmanager.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/appengine.py to appengine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py to ntlmpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py to pyopenssl.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py to ordered_dict.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py to _implementation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/retry.py to retry.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py to ssl_.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/timeout.py to timeout.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/url.py to url.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/completion.py to completion.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/hash.py to hash.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/help.py to help.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/install.py to install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/list.py to list.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/search.py to search.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/show.py to show.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/uninstall.py to uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/dictconfig.py to dictconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_file.py to req_file.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_install.py to req_install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_set.py to req_set.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_uninstall.py to req_uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/appdirs.py to appdirs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/build.py to build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/deprecation.py to deprecation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/encoding.py to encoding.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/filesystem.py to filesystem.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/hashes.py to hashes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/logging.py to logging.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/outdated.py to outdated.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/setuptools_build.py to setuptools_build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/ui.py to ui.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/bazaar.py to bazaar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/git.py to git.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/mercurial.py to mercurial.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/subversion.py to subversion.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
creating dist
creating 'dist/pip-8.1.0.dev0-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing pip-8.1.0.dev0-py2.7.egg
creating /usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg
Extracting pip-8.1.0.dev0-py2.7.egg to /usr/local/lib/python2.7/dist-packages
Adding pip 8.1.0.dev0 to easy-install.pth file
Installing pip script to /usr/local/bin
Installing pip2.7 script to /usr/local/bin
Installing pip2 script to /usr/local/bin
Installed /usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg
Processing dependencies for pip==8.1.0.dev0
Finished processing dependencies for pip==8.1.0.dev0
Ignoring indexes: https://pypi.python.org/simple
Collecting psycopg2
1 location(s) to search for versions of psycopg2:
* https://depot.galaxyproject.org/nate/wheelhouse
Skipping link https://depot.galaxyproject.org/nate/wheelhouse (from -f); not a file
Getting page https://depot.galaxyproject.org/nate/wheelhouse
Looking up "https://depot.galaxyproject.org/nate/wheelhouse" in the cache
No cache entry available
Starting new HTTPS connection (1): depot.galaxyproject.org
/usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:315: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning.
SNIMissingWarning
/usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:120: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
"GET /nate/wheelhouse HTTP/1.1" 301 184
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse"
Caching permanant redirect
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/" in the cache
No cache entry available
"GET /nate/wheelhouse/ HTTP/1.1" 200 None
Analyzing links from page https://depot.galaxyproject.org/nate/wheelhouse/
Skipping link https://depot.galaxyproject.org/nate/ (from https://depot.galaxyproject.org/nate/wheelhouse/); not a file
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Found link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/), version: 2.6.1
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp35-cp35m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Using version 2.6.1 (newest of versions: 2.6.1)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl" in the cache
No cache entry available
"GET /nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl HTTP/1.1" 200 1981638
Downloading https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (2.0MB)
Downloading from URL https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/)
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl"
Caching due to etag
Installing collected packages: psycopg2
Successfully installed psycopg2-2.6.1
Cleaning up...
#### psycopg2 test on ubuntu:12.04 2.7.3
INSERT 0 1
id was: 2
SELECT 1
SELECT returned: (2, 'ubuntu:12.04')
#### end psycopg2 test on ubuntu:12.04 2.7.3
git clone pip-clean pip && docker run --rm -v /home/nate/psycopg_test:/host/ --entrypoint=/bin/sh debian:8 -c "export IMAGE=debian:8 && apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get install -y python python-setuptools && cd /host/pip && python2.7 setup.py install && DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-setuptools && cd /host/pip && python3 setup.py install && cd /host && rm -rf pip && pip2.7 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python2.7 psycopg_test.py | tee -a psycopg_test.log && pip3 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python3 psycopg_test.py | tee -a psycopg_test.log"
Cloning into 'pip'...
done.
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
file libexpat1 libffi6 libmagic1 libpython-stdlib libpython2.7-minimal
libpython2.7-stdlib libsqlite3-0 libssl1.0.0 mime-support python-minimal
python-pkg-resources python2.7 python2.7-minimal
Suggested packages:
python-doc python-tk python-distribute python-distribute-doc python2.7-doc
binutils binfmt-support
The following NEW packages will be installed:
file libexpat1 libffi6 libmagic1 libpython-stdlib libpython2.7-minimal
libpython2.7-stdlib libsqlite3-0 libssl1.0.0 mime-support python
python-minimal python-pkg-resources python-setuptools python2.7
python2.7-minimal
0 upgraded, 16 newly installed, 0 to remove and 0 not upgraded.
Need to get 6314 kB of archives.
After this operation, 25.1 MB of additional disk space will be used.
Get:1 http://security.debian.org/ jessie/updates/main libssl1.0.0 amd64 1.0.1k-3+deb8u4 [1039 kB]
Get:2 http://httpredir.debian.org/debian/ jessie/main libmagic1 amd64 1:5.22+15-2+deb8u1 [249 kB]
Get:3 http://httpredir.debian.org/debian/ jessie/main libsqlite3-0 amd64 3.8.7.1-1+deb8u1 [438 kB]
Get:4 http://httpredir.debian.org/debian/ jessie/main libpython2.7-minimal amd64 2.7.9-2 [376 kB]
Get:5 http://httpredir.debian.org/debian/ jessie/main python2.7-minimal amd64 2.7.9-2 [1401 kB]
Get:6 http://httpredir.debian.org/debian/ jessie/main mime-support all 3.58 [36.0 kB]
Get:7 http://httpredir.debian.org/debian/ jessie/main python-minimal amd64 2.7.9-1 [40.3 kB]
Get:8 http://httpredir.debian.org/debian/ jessie/main libexpat1 amd64 2.1.0-6+deb8u1 [80.0 kB]
Get:9 http://httpredir.debian.org/debian/ jessie/main libffi6 amd64 3.1-2+b2 [20.1 kB]
Get:10 http://httpredir.debian.org/debian/ jessie/main libpython2.7-stdlib amd64 2.7.9-2 [1844 kB]
Get:11 http://httpredir.debian.org/debian/ jessie/main python2.7 amd64 2.7.9-2 [251 kB]
Get:12 http://httpredir.debian.org/debian/ jessie/main libpython-stdlib amd64 2.7.9-1 [19.5 kB]
Get:13 http://httpredir.debian.org/debian/ jessie/main python amd64 2.7.9-1 [151 kB]
Get:14 http://httpredir.debian.org/debian/ jessie/main file amd64 1:5.22+15-2+deb8u1 [60.4 kB]
Get:15 http://httpredir.debian.org/debian/ jessie/main python-pkg-resources all 5.5.1-1 [64.4 kB]
Get:16 http://httpredir.debian.org/debian/ jessie/main python-setuptools all 5.5.1-1 [242 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 6314 kB in 5s (1153 kB/s)
Selecting previously unselected package libssl1.0.0:amd64.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 7531 files and directories currently installed.)
Preparing to unpack .../libssl1.0.0_1.0.1k-3+deb8u4_amd64.deb ...
Unpacking libssl1.0.0:amd64 (1.0.1k-3+deb8u4) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../libmagic1_1%3a5.22+15-2+deb8u1_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.22+15-2+deb8u1) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../libsqlite3-0_3.8.7.1-1+deb8u1_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.8.7.1-1+deb8u1) ...
Selecting previously unselected package libpython2.7-minimal:amd64.
Preparing to unpack .../libpython2.7-minimal_2.7.9-2_amd64.deb ...
Unpacking libpython2.7-minimal:amd64 (2.7.9-2) ...
Selecting previously unselected package python2.7-minimal.
Preparing to unpack .../python2.7-minimal_2.7.9-2_amd64.deb ...
Unpacking python2.7-minimal (2.7.9-2) ...
Selecting previously unselected package python-minimal.
Preparing to unpack .../python-minimal_2.7.9-1_amd64.deb ...
Unpacking python-minimal (2.7.9-1) ...
Selecting previously unselected package mime-support.
Preparing to unpack .../mime-support_3.58_all.deb ...
Unpacking mime-support (3.58) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../libexpat1_2.1.0-6+deb8u1_amd64.deb ...
Unpacking libexpat1:amd64 (2.1.0-6+deb8u1) ...
Selecting previously unselected package libffi6:amd64.
Preparing to unpack .../libffi6_3.1-2+b2_amd64.deb ...
Unpacking libffi6:amd64 (3.1-2+b2) ...
Selecting previously unselected package libpython2.7-stdlib:amd64.
Preparing to unpack .../libpython2.7-stdlib_2.7.9-2_amd64.deb ...
Unpacking libpython2.7-stdlib:amd64 (2.7.9-2) ...
Selecting previously unselected package python2.7.
Preparing to unpack .../python2.7_2.7.9-2_amd64.deb ...
Unpacking python2.7 (2.7.9-2) ...
Selecting previously unselected package libpython-stdlib:amd64.
Preparing to unpack .../libpython-stdlib_2.7.9-1_amd64.deb ...
Unpacking libpython-stdlib:amd64 (2.7.9-1) ...
Setting up libpython2.7-minimal:amd64 (2.7.9-2) ...
Setting up python2.7-minimal (2.7.9-2) ...
Setting up python-minimal (2.7.9-1) ...
Selecting previously unselected package python.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 8364 files and directories currently installed.)
Preparing to unpack .../python_2.7.9-1_amd64.deb ...
Unpacking python (2.7.9-1) ...
Selecting previously unselected package file.
Preparing to unpack .../file_1%3a5.22+15-2+deb8u1_amd64.deb ...
Unpacking file (1:5.22+15-2+deb8u1) ...
Selecting previously unselected package python-pkg-resources.
Preparing to unpack .../python-pkg-resources_5.5.1-1_all.deb ...
Unpacking python-pkg-resources (5.5.1-1) ...
Selecting previously unselected package python-setuptools.
Preparing to unpack .../python-setuptools_5.5.1-1_all.deb ...
Unpacking python-setuptools (5.5.1-1) ...
Setting up libssl1.0.0:amd64 (1.0.1k-3+deb8u4) ...
Setting up libmagic1:amd64 (1:5.22+15-2+deb8u1) ...
Setting up libsqlite3-0:amd64 (3.8.7.1-1+deb8u1) ...
Setting up mime-support (3.58) ...
Setting up libexpat1:amd64 (2.1.0-6+deb8u1) ...
Setting up libffi6:amd64 (3.1-2+b2) ...
Setting up libpython2.7-stdlib:amd64 (2.7.9-2) ...
Setting up python2.7 (2.7.9-2) ...
Setting up libpython-stdlib:amd64 (2.7.9-1) ...
Setting up python (2.7.9-1) ...
Setting up file (1:5.22+15-2+deb8u1) ...
Setting up python-pkg-resources (5.5.1-1) ...
Setting up python-setuptools (5.5.1-1) ...
Processing triggers for libc-bin (2.19-18+deb8u3) ...
running install
running bdist_egg
running egg_info
creating pip.egg-info
writing requirements to pip.egg-info/requires.txt
writing pip.egg-info/PKG-INFO
writing top-level names to pip.egg-info/top_level.txt
writing dependency_links to pip.egg-info/dependency_links.txt
writing entry points to pip.egg-info/entry_points.txt
writing manifest file 'pip.egg-info/SOURCES.txt'
reading manifest file 'pip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
writing manifest file 'pip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/pip
copying pip/__init__.py -> build/lib.linux-x86_64-2.7/pip
copying pip/__main__.py -> build/lib.linux-x86_64-2.7/pip
copying pip/basecommand.py -> build/lib.linux-x86_64-2.7/pip
copying pip/baseparser.py -> build/lib.linux-x86_64-2.7/pip
copying pip/cmdoptions.py -> build/lib.linux-x86_64-2.7/pip
copying pip/download.py -> build/lib.linux-x86_64-2.7/pip
copying pip/exceptions.py -> build/lib.linux-x86_64-2.7/pip
copying pip/index.py -> build/lib.linux-x86_64-2.7/pip
copying pip/locations.py -> build/lib.linux-x86_64-2.7/pip
copying pip/pep425tags.py -> build/lib.linux-x86_64-2.7/pip
copying pip/status_codes.py -> build/lib.linux-x86_64-2.7/pip
copying pip/wheel.py -> build/lib.linux-x86_64-2.7/pip
creating build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/ipaddress.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/pyparsing.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/re-vendor.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/retrying.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/six.py -> build/lib.linux-x86_64-2.7/pip/_vendor
creating build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/__init__.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/completion.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/download.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/freeze.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/hash.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/help.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/install.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/list.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/search.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/show.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/uninstall.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/wheel.py -> build/lib.linux-x86_64-2.7/pip/commands
creating build/lib.linux-x86_64-2.7/pip/compat
copying pip/compat/__init__.py -> build/lib.linux-x86_64-2.7/pip/compat
copying pip/compat/dictconfig.py -> build/lib.linux-x86_64-2.7/pip/compat
creating build/lib.linux-x86_64-2.7/pip/models
copying pip/models/__init__.py -> build/lib.linux-x86_64-2.7/pip/models
copying pip/models/index.py -> build/lib.linux-x86_64-2.7/pip/models
creating build/lib.linux-x86_64-2.7/pip/operations
copying pip/operations/__init__.py -> build/lib.linux-x86_64-2.7/pip/operations
copying pip/operations/freeze.py -> build/lib.linux-x86_64-2.7/pip/operations
creating build/lib.linux-x86_64-2.7/pip/req
copying pip/req/__init__.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_file.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_install.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_set.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_uninstall.py -> build/lib.linux-x86_64-2.7/pip/req
creating build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/__init__.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/appdirs.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/build.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/deprecation.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/encoding.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/filesystem.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/hashes.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/logging.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/outdated.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/setuptools_build.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/ui.py -> build/lib.linux-x86_64-2.7/pip/utils
creating build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/__init__.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/bazaar.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/git.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/mercurial.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/subversion.py -> build/lib.linux-x86_64-2.7/pip/vcs
creating build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
creating build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/_cmd.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/adapter.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/controller.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/filewrapper.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/heuristics.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/serialize.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/wrapper.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
creating build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/ansi.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/ansitowin32.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/initialise.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/win32.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/winterm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
creating build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/database.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/index.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/locators.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/manifest.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/metadata.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/resources.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/scripts.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/util.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/version.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/wheel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/constants.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/html5parser.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/ihatexml.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/inputstream.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/sanitizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/tokenizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
creating build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/linklockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/mkdirlockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/pidlockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/sqlitelockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/symlinklockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
creating build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/__about__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/_compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/_structures.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/requirements.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/specifiers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/version.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
creating build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources
copying pip/_vendor/pkg_resources/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources
creating build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/bar.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/counter.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/helpers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/spinner.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/adapters.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/api.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/auth.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/certs.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/cookies.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/exceptions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/hooks.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/models.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/sessions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/status_codes.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/structures.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
creating build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/file_cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/redis_cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
creating build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/misc.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/shutil.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/sysconfig.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/tarfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/lint.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/optionaltags.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/sanitizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/whitespace.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/htmlserializer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/sax.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/dom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/dom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/etree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/genshistream.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/pulldom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/datrie.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/py.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages
copying pip/_vendor/requests/packages/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5freq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardetect.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardistribution.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/constants.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/cp949prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escsm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jisfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jpcntx.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/latin1prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcssm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sjisprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/universaldetector.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/utf8prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/_collections.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connection.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/exceptions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/fields.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/filepost.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/request.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/response.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/six.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/connection.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/request.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/response.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/retry.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/url.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/distlib/t32.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/t64.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/w32.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/w64.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/requests/cacert.pem -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/distlib/_backport/sysconfig.cfg -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/__init__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/__main__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/basecommand.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/baseparser.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/cmdoptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/download.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/exceptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/index.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/locations.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/pep425tags.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/status_codes.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/wheel.py -> build/bdist.linux-x86_64/egg/pip
creating build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/ipaddress.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/pyparsing.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/re-vendor.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/retrying.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor
creating build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/_cmd.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/adapter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/controller.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/filewrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/heuristics.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/serialize.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/wrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/file_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/redis_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
creating build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/ansi.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/ansitowin32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/initialise.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/win32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/winterm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/database.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/index.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/locators.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/manifest.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/metadata.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/resources.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/scripts.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/util.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/wheel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/misc.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/shutil.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/sysconfig.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/tarfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/sysconfig.cfg -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/t32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/t64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/w32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/w64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/html5parser.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/ihatexml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/inputstream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/tokenizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/lint.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/optionaltags.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/whitespace.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer/htmlserializer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters/sax.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/genshistream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/pulldom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/datrie.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/py.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
creating build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/linklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/mkdirlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/pidlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/sqlitelockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/symlinklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
creating build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/__about__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/_compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/_structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/requirements.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/specifiers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
creating build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
copying build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
creating build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/bar.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/counter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/helpers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/spinner.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/adapters.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/api.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/auth.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/certs.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/cookies.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/hooks.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/models.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/sessions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/status_codes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/big5freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/big5prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/chardetect.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/chardistribution.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/charsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/cp949prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/escprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/escsm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euckrprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euctwprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/jisfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/jpcntx.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/latin1prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcssm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sjisprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/universaldetector.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/utf8prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/_collections.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/fields.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/filepost.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/retry.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/url.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/cacert.pem -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/__init__.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/completion.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/download.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/freeze.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/hash.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/help.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/install.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/list.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/search.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/show.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/uninstall.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/wheel.py -> build/bdist.linux-x86_64/egg/pip/commands
creating build/bdist.linux-x86_64/egg/pip/compat
copying build/lib.linux-x86_64-2.7/pip/compat/__init__.py -> build/bdist.linux-x86_64/egg/pip/compat
copying build/lib.linux-x86_64-2.7/pip/compat/dictconfig.py -> build/bdist.linux-x86_64/egg/pip/compat
creating build/bdist.linux-x86_64/egg/pip/models
copying build/lib.linux-x86_64-2.7/pip/models/__init__.py -> build/bdist.linux-x86_64/egg/pip/models
copying build/lib.linux-x86_64-2.7/pip/models/index.py -> build/bdist.linux-x86_64/egg/pip/models
creating build/bdist.linux-x86_64/egg/pip/operations
copying build/lib.linux-x86_64-2.7/pip/operations/__init__.py -> build/bdist.linux-x86_64/egg/pip/operations
copying build/lib.linux-x86_64-2.7/pip/operations/freeze.py -> build/bdist.linux-x86_64/egg/pip/operations
creating build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/__init__.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_file.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_install.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_set.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_uninstall.py -> build/bdist.linux-x86_64/egg/pip/req
creating build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/__init__.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/appdirs.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/deprecation.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/encoding.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/filesystem.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/hashes.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/logging.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/outdated.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/setuptools_build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/ui.py -> build/bdist.linux-x86_64/egg/pip/utils
creating build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/__init__.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/bazaar.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/git.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/mercurial.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/subversion.py -> build/bdist.linux-x86_64/egg/pip/vcs
byte-compiling build/bdist.linux-x86_64/egg/pip/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/__main__.py to __main__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/basecommand.py to basecommand.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/baseparser.py to baseparser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/cmdoptions.py to cmdoptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/locations.py to locations.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/pep425tags.py to pep425tags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/ipaddress.py to ipaddress.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pyparsing.py to pyparsing.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/re-vendor.py to re-vendor.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/retrying.py to retrying.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/_cmd.py to _cmd.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/adapter.py to adapter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/cache.py to cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/controller.py to controller.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/filewrapper.py to filewrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/heuristics.py to heuristics.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/serialize.py to serialize.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/wrapper.py to wrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/file_cache.py to file_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/redis_cache.py to redis_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansi.py to ansi.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansitowin32.py to ansitowin32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/initialise.py to initialise.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/win32.py to win32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/winterm.py to winterm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/database.py to database.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/locators.py to locators.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/manifest.py to manifest.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/metadata.py to metadata.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/resources.py to resources.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/scripts.py to scripts.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/util.py to util.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/misc.py to misc.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/shutil.py to shutil.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/sysconfig.py to sysconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/tarfile.py to tarfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/html5parser.py to html5parser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/ihatexml.py to ihatexml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/inputstream.py to inputstream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/tokenizer.py to tokenizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py to alphabeticalattributes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/inject_meta_charset.py to inject_meta_charset.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/lint.py to lint.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/optionaltags.py to optionaltags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/whitespace.py to whitespace.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/htmlserializer.py to htmlserializer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/sax.py to sax.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py to etree_lxml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/genshistream.py to genshistream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/lxmletree.py to lxmletree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/pulldom.py to pulldom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/datrie.py to datrie.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/py.py to py.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/linklockfile.py to linklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/mkdirlockfile.py to mkdirlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/pidlockfile.py to pidlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/sqlitelockfile.py to sqlitelockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/symlinklockfile.py to symlinklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__about__.py to __about__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_compat.py to _compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_structures.py to _structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/requirements.py to requirements.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/specifiers.py to specifiers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/bar.py to bar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/counter.py to counter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/helpers.py to helpers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/spinner.py to spinner.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/adapters.py to adapters.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/api.py to api.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/auth.py to auth.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/certs.py to certs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/cookies.py to cookies.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/hooks.py to hooks.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/models.py to models.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/sessions.py to sessions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/structures.py to structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5freq.py to big5freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5prober.py to big5prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardetect.py to chardetect.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardistribution.py to chardistribution.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetgroupprober.py to charsetgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetprober.py to charsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/codingstatemachine.py to codingstatemachine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/cp949prober.py to cp949prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escprober.py to escprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escsm.py to escsm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/eucjpprober.py to eucjpprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrfreq.py to euckrfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrprober.py to euckrprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwfreq.py to euctwfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwprober.py to euctwprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312freq.py to gb2312freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312prober.py to gb2312prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/hebrewprober.py to hebrewprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jisfreq.py to jisfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jpcntx.py to jpcntx.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py to langbulgarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py to langcyrillicmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langgreekmodel.py to langgreekmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhebrewmodel.py to langhebrewmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhungarianmodel.py to langhungarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langthaimodel.py to langthaimodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/latin1prober.py to latin1prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcharsetprober.py to mbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py to mbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcssm.py to mbcssm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcharsetprober.py to sbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py to sbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sjisprober.py to sjisprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/universaldetector.py to universaldetector.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/utf8prober.py to utf8prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/_collections.py to _collections.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connectionpool.py to connectionpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/fields.py to fields.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/filepost.py to filepost.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/poolmanager.py to poolmanager.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/appengine.py to appengine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py to ntlmpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py to pyopenssl.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py to ordered_dict.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py to _implementation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/retry.py to retry.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py to ssl_.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/timeout.py to timeout.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/url.py to url.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/completion.py to completion.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/hash.py to hash.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/help.py to help.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/install.py to install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/list.py to list.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/search.py to search.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/show.py to show.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/uninstall.py to uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/dictconfig.py to dictconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_file.py to req_file.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_install.py to req_install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_set.py to req_set.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_uninstall.py to req_uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/appdirs.py to appdirs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/build.py to build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/deprecation.py to deprecation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/encoding.py to encoding.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/filesystem.py to filesystem.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/hashes.py to hashes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/logging.py to logging.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/outdated.py to outdated.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/setuptools_build.py to setuptools_build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/ui.py to ui.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/bazaar.py to bazaar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/git.py to git.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/mercurial.py to mercurial.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/subversion.py to subversion.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
creating dist
creating 'dist/pip-8.1.0.dev0-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing pip-8.1.0.dev0-py2.7.egg
creating /usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg
Extracting pip-8.1.0.dev0-py2.7.egg to /usr/local/lib/python2.7/dist-packages
Adding pip 8.1.0.dev0 to easy-install.pth file
Installing pip script to /usr/local/bin
Installing pip2.7 script to /usr/local/bin
Installing pip2 script to /usr/local/bin
Installed /usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg
Processing dependencies for pip==8.1.0.dev0
Finished processing dependencies for pip==8.1.0.dev0
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
dh-python libmpdec2 libpython3-stdlib libpython3.4-minimal
libpython3.4-stdlib python3-minimal python3-pkg-resources python3.4
python3.4-minimal
Suggested packages:
python3-doc python3-tk python3-venv python3.4-venv python3.4-doc binutils
binfmt-support
The following NEW packages will be installed:
dh-python libmpdec2 libpython3-stdlib libpython3.4-minimal
libpython3.4-stdlib python3 python3-minimal python3-pkg-resources
python3-setuptools python3.4 python3.4-minimal
0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded.
Need to get 4824 kB of archives.
After this operation, 19.6 MB of additional disk space will be used.
Get:1 http://httpredir.debian.org/debian/ jessie/main libmpdec2 amd64 2.4.1-1 [85.7 kB]
Get:2 http://httpredir.debian.org/debian/ jessie/main libpython3.4-minimal amd64 3.4.2-1 [492 kB]
Get:3 http://httpredir.debian.org/debian/ jessie/main dh-python all 1.20141111-2 [66.4 kB]
Get:4 http://httpredir.debian.org/debian/ jessie/main python3-pkg-resources all 5.5.1-1 [34.2 kB]
Get:5 http://httpredir.debian.org/debian/ jessie/main libpython3.4-stdlib amd64 3.4.2-1 [2088 kB]
Get:6 http://httpredir.debian.org/debian/ jessie/main python3.4-minimal amd64 3.4.2-1 [1646 kB]
Get:7 http://httpredir.debian.org/debian/ jessie/main python3.4 amd64 3.4.2-1 [204 kB]
Get:8 http://httpredir.debian.org/debian/ jessie/main python3-minimal amd64 3.4.2-2 [34.7 kB]
Get:9 http://httpredir.debian.org/debian/ jessie/main python3-setuptools all 5.5.1-1 [134 kB]
Get:10 http://httpredir.debian.org/debian/ jessie/main libpython3-stdlib amd64 3.4.2-2 [18.1 kB]
Get:11 http://httpredir.debian.org/debian/ jessie/main python3 amd64 3.4.2-2 [21.2 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 4824 kB in 3s (1511 kB/s)
Selecting previously unselected package libmpdec2:amd64.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 8538 files and directories currently installed.)
Preparing to unpack .../libmpdec2_2.4.1-1_amd64.deb ...
Unpacking libmpdec2:amd64 (2.4.1-1) ...
Selecting previously unselected package libpython3.4-minimal:amd64.
Preparing to unpack .../libpython3.4-minimal_3.4.2-1_amd64.deb ...
Unpacking libpython3.4-minimal:amd64 (3.4.2-1) ...
Selecting previously unselected package libpython3.4-stdlib:amd64.
Preparing to unpack .../libpython3.4-stdlib_3.4.2-1_amd64.deb ...
Unpacking libpython3.4-stdlib:amd64 (3.4.2-1) ...
Selecting previously unselected package python3.4-minimal.
Preparing to unpack .../python3.4-minimal_3.4.2-1_amd64.deb ...
Unpacking python3.4-minimal (3.4.2-1) ...
Selecting previously unselected package python3.4.
Preparing to unpack .../python3.4_3.4.2-1_amd64.deb ...
Unpacking python3.4 (3.4.2-1) ...
Selecting previously unselected package python3-minimal.
Preparing to unpack .../python3-minimal_3.4.2-2_amd64.deb ...
Unpacking python3-minimal (3.4.2-2) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../libpython3-stdlib_3.4.2-2_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.4.2-2) ...
Selecting previously unselected package python3.
Preparing to unpack .../python3_3.4.2-2_amd64.deb ...
Unpacking python3 (3.4.2-2) ...
Selecting previously unselected package dh-python.
Preparing to unpack .../dh-python_1.20141111-2_all.deb ...
Unpacking dh-python (1.20141111-2) ...
Selecting previously unselected package python3-pkg-resources.
Preparing to unpack .../python3-pkg-resources_5.5.1-1_all.deb ...
Unpacking python3-pkg-resources (5.5.1-1) ...
Selecting previously unselected package python3-setuptools.
Preparing to unpack .../python3-setuptools_5.5.1-1_all.deb ...
Unpacking python3-setuptools (5.5.1-1) ...
Processing triggers for mime-support (3.58) ...
Setting up libmpdec2:amd64 (2.4.1-1) ...
Setting up libpython3.4-minimal:amd64 (3.4.2-1) ...
Setting up libpython3.4-stdlib:amd64 (3.4.2-1) ...
Setting up python3.4-minimal (3.4.2-1) ...
Setting up python3.4 (3.4.2-1) ...
Setting up python3-minimal (3.4.2-2) ...
Setting up libpython3-stdlib:amd64 (3.4.2-2) ...
Setting up dh-python (1.20141111-2) ...
Setting up python3 (3.4.2-2) ...
Setting up python3-pkg-resources (5.5.1-1) ...
Setting up python3-setuptools (5.5.1-1) ...
Processing triggers for libc-bin (2.19-18+deb8u3) ...
running install
Checking .pth file support in /usr/local/lib/python3.4/dist-packages/
/usr/bin/python3 -E -c pass
TEST PASSED: /usr/local/lib/python3.4/dist-packages/ appears to support .pth files
running bdist_egg
running egg_info
writing requirements to pip.egg-info/requires.txt
writing top-level names to pip.egg-info/top_level.txt
writing entry points to pip.egg-info/entry_points.txt
writing dependency_links to pip.egg-info/dependency_links.txt
writing pip.egg-info/PKG-INFO
reading manifest file 'pip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
writing manifest file 'pip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build/lib
creating build/lib/pip
copying pip/__init__.py -> build/lib/pip
copying pip/__main__.py -> build/lib/pip
copying pip/basecommand.py -> build/lib/pip
copying pip/baseparser.py -> build/lib/pip
copying pip/cmdoptions.py -> build/lib/pip
copying pip/download.py -> build/lib/pip
copying pip/exceptions.py -> build/lib/pip
copying pip/index.py -> build/lib/pip
copying pip/locations.py -> build/lib/pip
copying pip/pep425tags.py -> build/lib/pip
copying pip/status_codes.py -> build/lib/pip
copying pip/wheel.py -> build/lib/pip
creating build/lib/pip/_vendor
copying pip/_vendor/__init__.py -> build/lib/pip/_vendor
copying pip/_vendor/ipaddress.py -> build/lib/pip/_vendor
copying pip/_vendor/pyparsing.py -> build/lib/pip/_vendor
copying pip/_vendor/re-vendor.py -> build/lib/pip/_vendor
copying pip/_vendor/retrying.py -> build/lib/pip/_vendor
copying pip/_vendor/six.py -> build/lib/pip/_vendor
creating build/lib/pip/commands
copying pip/commands/__init__.py -> build/lib/pip/commands
copying pip/commands/completion.py -> build/lib/pip/commands
copying pip/commands/download.py -> build/lib/pip/commands
copying pip/commands/freeze.py -> build/lib/pip/commands
copying pip/commands/hash.py -> build/lib/pip/commands
copying pip/commands/help.py -> build/lib/pip/commands
copying pip/commands/install.py -> build/lib/pip/commands
copying pip/commands/list.py -> build/lib/pip/commands
copying pip/commands/search.py -> build/lib/pip/commands
copying pip/commands/show.py -> build/lib/pip/commands
copying pip/commands/uninstall.py -> build/lib/pip/commands
copying pip/commands/wheel.py -> build/lib/pip/commands
creating build/lib/pip/compat
copying pip/compat/__init__.py -> build/lib/pip/compat
copying pip/compat/dictconfig.py -> build/lib/pip/compat
creating build/lib/pip/models
copying pip/models/__init__.py -> build/lib/pip/models
copying pip/models/index.py -> build/lib/pip/models
creating build/lib/pip/operations
copying pip/operations/__init__.py -> build/lib/pip/operations
copying pip/operations/freeze.py -> build/lib/pip/operations
creating build/lib/pip/req
copying pip/req/__init__.py -> build/lib/pip/req
copying pip/req/req_file.py -> build/lib/pip/req
copying pip/req/req_install.py -> build/lib/pip/req
copying pip/req/req_set.py -> build/lib/pip/req
copying pip/req/req_uninstall.py -> build/lib/pip/req
creating build/lib/pip/utils
copying pip/utils/__init__.py -> build/lib/pip/utils
copying pip/utils/appdirs.py -> build/lib/pip/utils
copying pip/utils/build.py -> build/lib/pip/utils
copying pip/utils/deprecation.py -> build/lib/pip/utils
copying pip/utils/encoding.py -> build/lib/pip/utils
copying pip/utils/filesystem.py -> build/lib/pip/utils
copying pip/utils/hashes.py -> build/lib/pip/utils
copying pip/utils/logging.py -> build/lib/pip/utils
copying pip/utils/outdated.py -> build/lib/pip/utils
copying pip/utils/setuptools_build.py -> build/lib/pip/utils
copying pip/utils/ui.py -> build/lib/pip/utils
creating build/lib/pip/vcs
copying pip/vcs/__init__.py -> build/lib/pip/vcs
copying pip/vcs/bazaar.py -> build/lib/pip/vcs
copying pip/vcs/git.py -> build/lib/pip/vcs
copying pip/vcs/mercurial.py -> build/lib/pip/vcs
copying pip/vcs/subversion.py -> build/lib/pip/vcs
creating build/lib/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/__init__.py -> build/lib/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/markers.py -> build/lib/pip/_vendor/_markerlib
creating build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/__init__.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/_cmd.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/adapter.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/cache.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/compat.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/controller.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/filewrapper.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/heuristics.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/serialize.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/wrapper.py -> build/lib/pip/_vendor/cachecontrol
creating build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/__init__.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/ansi.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/ansitowin32.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/initialise.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/win32.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/winterm.py -> build/lib/pip/_vendor/colorama
creating build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/__init__.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/compat.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/database.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/index.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/locators.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/manifest.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/markers.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/metadata.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/resources.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/scripts.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/util.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/version.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/wheel.py -> build/lib/pip/_vendor/distlib
creating build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/__init__.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/constants.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/html5parser.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/ihatexml.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/inputstream.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/sanitizer.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/tokenizer.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/utils.py -> build/lib/pip/_vendor/html5lib
creating build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/__init__.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/linklockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/mkdirlockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/pidlockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/sqlitelockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/symlinklockfile.py -> build/lib/pip/_vendor/lockfile
creating build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/__about__.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/__init__.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/_compat.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/_structures.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/markers.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/requirements.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/specifiers.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/utils.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/version.py -> build/lib/pip/_vendor/packaging
creating build/lib/pip/_vendor/pkg_resources
copying pip/_vendor/pkg_resources/__init__.py -> build/lib/pip/_vendor/pkg_resources
creating build/lib/pip/_vendor/progress
copying pip/_vendor/progress/__init__.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/bar.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/counter.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/helpers.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/spinner.py -> build/lib/pip/_vendor/progress
creating build/lib/pip/_vendor/requests
copying pip/_vendor/requests/__init__.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/adapters.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/api.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/auth.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/certs.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/compat.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/cookies.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/exceptions.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/hooks.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/models.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/sessions.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/status_codes.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/structures.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/utils.py -> build/lib/pip/_vendor/requests
creating build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/__init__.py -> build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/file_cache.py -> build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/redis_cache.py -> build/lib/pip/_vendor/cachecontrol/caches
creating build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/__init__.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/misc.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/shutil.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/sysconfig.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/tarfile.py -> build/lib/pip/_vendor/distlib/_backport
creating build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/__init__.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/_base.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/lint.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/optionaltags.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/sanitizer.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/whitespace.py -> build/lib/pip/_vendor/html5lib/filters
creating build/lib/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/__init__.py -> build/lib/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/htmlserializer.py -> build/lib/pip/_vendor/html5lib/serializer
creating build/lib/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/__init__.py -> build/lib/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/sax.py -> build/lib/pip/_vendor/html5lib/treeadapters
creating build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/__init__.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/_base.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/dom.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/lib/pip/_vendor/html5lib/treebuilders
creating build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/__init__.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/_base.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/dom.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/etree.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/genshistream.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/pulldom.py -> build/lib/pip/_vendor/html5lib/treewalkers
creating build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/__init__.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/_base.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/datrie.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/py.py -> build/lib/pip/_vendor/html5lib/trie
creating build/lib/pip/_vendor/requests/packages
copying pip/_vendor/requests/packages/__init__.py -> build/lib/pip/_vendor/requests/packages
creating build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/__init__.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5freq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardetect.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardistribution.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/compat.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/constants.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/cp949prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escsm.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jisfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jpcntx.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/latin1prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcssm.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sjisprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/universaldetector.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/utf8prober.py -> build/lib/pip/_vendor/requests/packages/chardet
creating build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/_collections.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connection.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/exceptions.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/fields.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/filepost.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/request.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/response.py -> build/lib/pip/_vendor/requests/packages/urllib3
creating build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
creating build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/six.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
creating build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/connection.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/request.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/response.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/retry.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/url.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
creating build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/distlib/t32.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/t64.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/w32.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/w64.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/requests/cacert.pem -> build/lib/pip/_vendor/requests
copying pip/_vendor/distlib/_backport/sysconfig.cfg -> build/lib/pip/_vendor/distlib/_backport
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__init__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__main__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/basecommand.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/baseparser.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/cmdoptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/download.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/exceptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/index.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/locations.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/pep425tags.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/status_codes.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/wheel.py -> build/bdist.linux-x86_64/egg/pip
creating build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/ipaddress.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/pyparsing.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/re-vendor.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/retrying.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor
creating build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/_cmd.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/adapter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/controller.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/filewrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/heuristics.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/serialize.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/wrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/file_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/redis_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
creating build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansi.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansitowin32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/initialise.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/win32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/winterm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/database.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/index.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/locators.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/manifest.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/metadata.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/resources.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/scripts.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/util.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/wheel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/misc.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/shutil.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/tarfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.cfg -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/t32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/t64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/html5parser.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/ihatexml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/inputstream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/tokenizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/lint.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/optionaltags.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/whitespace.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/htmlserializer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/sax.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/genshistream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/pulldom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/datrie.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/py.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
creating build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/linklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/mkdirlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/pidlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/sqlitelockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/symlinklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
creating build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__about__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/requirements.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/specifiers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
creating build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
copying build/lib/pip/_vendor/pkg_resources/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
creating build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/bar.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/counter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/helpers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/spinner.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/adapters.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/api.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/auth.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/certs.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/cookies.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/hooks.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/models.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/sessions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/status_codes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
copying build/lib/pip/_vendor/requests/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardetect.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardistribution.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/cp949prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escsm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jisfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jpcntx.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/latin1prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcssm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sjisprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/universaldetector.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/utf8prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/_collections.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/fields.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/filepost.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/retry.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/url.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/cacert.pem -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/__init__.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/completion.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/download.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/freeze.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/hash.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/help.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/install.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/list.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/search.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/show.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/uninstall.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/wheel.py -> build/bdist.linux-x86_64/egg/pip/commands
creating build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/__init__.py -> build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/dictconfig.py -> build/bdist.linux-x86_64/egg/pip/compat
creating build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/__init__.py -> build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/index.py -> build/bdist.linux-x86_64/egg/pip/models
creating build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/__init__.py -> build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/freeze.py -> build/bdist.linux-x86_64/egg/pip/operations
creating build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/__init__.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_file.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_install.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_set.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_uninstall.py -> build/bdist.linux-x86_64/egg/pip/req
creating build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/__init__.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/appdirs.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/deprecation.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/encoding.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/filesystem.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/hashes.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/logging.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/outdated.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/setuptools_build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/ui.py -> build/bdist.linux-x86_64/egg/pip/utils
creating build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/__init__.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/bazaar.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/git.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/mercurial.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/subversion.py -> build/bdist.linux-x86_64/egg/pip/vcs
byte-compiling build/bdist.linux-x86_64/egg/pip/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/__main__.py to __main__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/basecommand.py to basecommand.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/baseparser.py to baseparser.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/cmdoptions.py to cmdoptions.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/download.py to download.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/exceptions.py to exceptions.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/index.py to index.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/locations.py to locations.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/pep425tags.py to pep425tags.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/status_codes.py to status_codes.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/wheel.py to wheel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/ipaddress.py to ipaddress.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pyparsing.py to pyparsing.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/re-vendor.py to re-vendor.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/retrying.py to retrying.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/six.py to six.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/markers.py to markers.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/_cmd.py to _cmd.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/adapter.py to adapter.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/cache.py to cache.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/compat.py to compat.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/controller.py to controller.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/filewrapper.py to filewrapper.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/heuristics.py to heuristics.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/serialize.py to serialize.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/wrapper.py to wrapper.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/file_cache.py to file_cache.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/redis_cache.py to redis_cache.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansi.py to ansi.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansitowin32.py to ansitowin32.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/initialise.py to initialise.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/win32.py to win32.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/winterm.py to winterm.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/compat.py to compat.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/database.py to database.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/index.py to index.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/locators.py to locators.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/manifest.py to manifest.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/markers.py to markers.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/metadata.py to metadata.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/resources.py to resources.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/scripts.py to scripts.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/util.py to util.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/version.py to version.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/wheel.py to wheel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/misc.py to misc.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/shutil.py to shutil.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/sysconfig.py to sysconfig.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/tarfile.py to tarfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/constants.py to constants.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/html5parser.py to html5parser.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/ihatexml.py to ihatexml.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/inputstream.py to inputstream.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/sanitizer.py to sanitizer.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/tokenizer.py to tokenizer.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/utils.py to utils.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/_base.py to _base.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py to alphabeticalattributes.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/inject_meta_charset.py to inject_meta_charset.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/lint.py to lint.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/optionaltags.py to optionaltags.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/sanitizer.py to sanitizer.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/whitespace.py to whitespace.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/htmlserializer.py to htmlserializer.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/sax.py to sax.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/_base.py to _base.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/dom.py to dom.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree.py to etree.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py to etree_lxml.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/_base.py to _base.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/dom.py to dom.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/etree.py to etree.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/genshistream.py to genshistream.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/lxmletree.py to lxmletree.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/pulldom.py to pulldom.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/_base.py to _base.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/datrie.py to datrie.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/py.py to py.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/linklockfile.py to linklockfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/mkdirlockfile.py to mkdirlockfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/pidlockfile.py to pidlockfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/sqlitelockfile.py to sqlitelockfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/symlinklockfile.py to symlinklockfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__about__.py to __about__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_compat.py to _compat.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_structures.py to _structures.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/markers.py to markers.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/requirements.py to requirements.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/specifiers.py to specifiers.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/utils.py to utils.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/version.py to version.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/bar.py to bar.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/counter.py to counter.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/helpers.py to helpers.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/spinner.py to spinner.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/adapters.py to adapters.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/api.py to api.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/auth.py to auth.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/certs.py to certs.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/compat.py to compat.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/cookies.py to cookies.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/exceptions.py to exceptions.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/hooks.py to hooks.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/models.py to models.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/sessions.py to sessions.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/status_codes.py to status_codes.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/structures.py to structures.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/utils.py to utils.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5freq.py to big5freq.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5prober.py to big5prober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardetect.py to chardetect.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardistribution.py to chardistribution.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetgroupprober.py to charsetgroupprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetprober.py to charsetprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/codingstatemachine.py to codingstatemachine.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/compat.py to compat.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/constants.py to constants.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/cp949prober.py to cp949prober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escprober.py to escprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escsm.py to escsm.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/eucjpprober.py to eucjpprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrfreq.py to euckrfreq.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrprober.py to euckrprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwfreq.py to euctwfreq.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwprober.py to euctwprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312freq.py to gb2312freq.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312prober.py to gb2312prober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/hebrewprober.py to hebrewprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jisfreq.py to jisfreq.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jpcntx.py to jpcntx.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py to langbulgarianmodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py to langcyrillicmodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langgreekmodel.py to langgreekmodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhebrewmodel.py to langhebrewmodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhungarianmodel.py to langhungarianmodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langthaimodel.py to langthaimodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/latin1prober.py to latin1prober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcharsetprober.py to mbcharsetprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py to mbcsgroupprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcssm.py to mbcssm.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcharsetprober.py to sbcharsetprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py to sbcsgroupprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sjisprober.py to sjisprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/universaldetector.py to universaldetector.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/utf8prober.py to utf8prober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/_collections.py to _collections.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connection.py to connection.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connectionpool.py to connectionpool.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/exceptions.py to exceptions.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/fields.py to fields.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/filepost.py to filepost.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/poolmanager.py to poolmanager.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/request.py to request.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/response.py to response.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/appengine.py to appengine.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py to ntlmpool.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py to pyopenssl.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py to ordered_dict.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/six.py to six.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py to _implementation.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/connection.py to connection.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/request.py to request.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/response.py to response.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/retry.py to retry.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py to ssl_.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/timeout.py to timeout.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/url.py to url.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/completion.py to completion.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/download.py to download.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/freeze.py to freeze.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/hash.py to hash.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/help.py to help.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/install.py to install.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/list.py to list.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/search.py to search.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/show.py to show.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/uninstall.py to uninstall.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/wheel.py to wheel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/dictconfig.py to dictconfig.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/index.py to index.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/freeze.py to freeze.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_file.py to req_file.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_install.py to req_install.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_set.py to req_set.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_uninstall.py to req_uninstall.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/appdirs.py to appdirs.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/build.py to build.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/deprecation.py to deprecation.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/encoding.py to encoding.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/filesystem.py to filesystem.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/hashes.py to hashes.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/logging.py to logging.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/outdated.py to outdated.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/setuptools_build.py to setuptools_build.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/ui.py to ui.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/bazaar.py to bazaar.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/git.py to git.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/mercurial.py to mercurial.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/subversion.py to subversion.cpython-34.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
creating 'dist/pip-8.1.0.dev0-py3.4.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing pip-8.1.0.dev0-py3.4.egg
creating /usr/local/lib/python3.4/dist-packages/pip-8.1.0.dev0-py3.4.egg
Extracting pip-8.1.0.dev0-py3.4.egg to /usr/local/lib/python3.4/dist-packages
Adding pip 8.1.0.dev0 to easy-install.pth file
Installing pip3.4 script to /usr/local/bin
Installing pip script to /usr/local/bin
Installing pip3 script to /usr/local/bin
Installed /usr/local/lib/python3.4/dist-packages/pip-8.1.0.dev0-py3.4.egg
Processing dependencies for pip==8.1.0.dev0
Finished processing dependencies for pip==8.1.0.dev0
Ignoring indexes: https://pypi.python.org/simple
Collecting psycopg2
1 location(s) to search for versions of psycopg2:
* https://depot.galaxyproject.org/nate/wheelhouse
Skipping link https://depot.galaxyproject.org/nate/wheelhouse (from -f); not a file
Getting page https://depot.galaxyproject.org/nate/wheelhouse
Looking up "https://depot.galaxyproject.org/nate/wheelhouse" in the cache
No cache entry available
Starting new HTTPS connection (1): depot.galaxyproject.org
"GET /nate/wheelhouse HTTP/1.1" 301 184
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse"
Caching permanant redirect
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/" in the cache
No cache entry available
"GET /nate/wheelhouse/ HTTP/1.1" 200 None
Analyzing links from page https://depot.galaxyproject.org/nate/wheelhouse/
Skipping link https://depot.galaxyproject.org/nate/ (from https://depot.galaxyproject.org/nate/wheelhouse/); not a file
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Found link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/), version: 2.6.1
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp35-cp35m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Using version 2.6.1 (newest of versions: 2.6.1)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl" in the cache
No cache entry available
"GET /nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl HTTP/1.1" 200 1981638
Downloading https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (2.0MB)
Downloading from URL https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/)
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl"
Caching due to etag
Installing collected packages: psycopg2
Successfully installed psycopg2-2.6.1
Cleaning up...
#### psycopg2 test on debian:8 2.7.9
INSERT 0 1
id was: 3
SELECT 1
SELECT returned: (3, 'debian:8')
#### end psycopg2 test on debian:8 2.7.9
Ignoring indexes: https://pypi.python.org/simple
Collecting psycopg2
1 location(s) to search for versions of psycopg2:
* https://depot.galaxyproject.org/nate/wheelhouse
Skipping link https://depot.galaxyproject.org/nate/wheelhouse (from -f); not a file
Getting page https://depot.galaxyproject.org/nate/wheelhouse
Looking up "https://depot.galaxyproject.org/nate/wheelhouse" in the cache
Returning cached "301 Moved Permanently" response (ignoring date and etag information)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/" in the cache
No cache entry available
Starting new HTTPS connection (1): depot.galaxyproject.org
"GET /nate/wheelhouse/ HTTP/1.1" 200 None
Analyzing links from page https://depot.galaxyproject.org/nate/wheelhouse/
Skipping link https://depot.galaxyproject.org/nate/ (from https://depot.galaxyproject.org/nate/wheelhouse/); not a file
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Found link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/), version: 2.6.1
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp35-cp35m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Using version 2.6.1 (newest of versions: 2.6.1)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl" in the cache
No cache entry available
"GET /nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl HTTP/1.1" 200 1988618
Downloading https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (2.0MB)
Downloading from URL https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/)
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl"
Caching due to etag
Installing collected packages: psycopg2
Successfully installed psycopg2-2.6.1
Cleaning up...
#### psycopg2 test on debian:8 3.4.2
INSERT 0 1
id was: 4
SELECT 1
SELECT returned: (4, 'debian:8')
#### end psycopg2 test on debian:8 3.4.2
git clone pip-clean pip && docker run --rm -v /home/nate/psycopg_test:/host/ --entrypoint=/bin/sh ubuntu:14.04 -c "export IMAGE=ubuntu:14.04 && apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get install -y python python-setuptools && cd /host/pip && python2.7 setup.py install && DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-setuptools && cd /host/pip && python3 setup.py install && cd /host && rm -rf pip && pip2.7 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python2.7 psycopg_test.py | tee -a psycopg_test.log && pip3 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python3 psycopg_test.py | tee -a psycopg_test.log"
Cloning into 'pip'...
done.
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
libpython-stdlib libpython2.7-minimal libpython2.7-stdlib python-minimal
python-pkg-resources python2.7 python2.7-minimal
Suggested packages:
python-doc python-tk python-distribute python-distribute-doc python2.7-doc
binutils binfmt-support
The following NEW packages will be installed:
libpython-stdlib libpython2.7-minimal libpython2.7-stdlib python
python-minimal python-pkg-resources python-setuptools python2.7
python2.7-minimal
0 upgraded, 9 newly installed, 0 to remove and 1 not upgraded.
Need to get 4018 kB of archives.
After this operation, 17.0 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpython2.7-minimal amd64 2.7.6-8ubuntu0.2 [308 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main python2.7-minimal amd64 2.7.6-8ubuntu0.2 [1185 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpython2.7-stdlib amd64 2.7.6-8ubuntu0.2 [1869 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ trusty/main libpython-stdlib amd64 2.7.5-5ubuntu3 [7012 B]
Get:5 http://archive.ubuntu.com/ubuntu/ trusty-updates/main python2.7 amd64 2.7.6-8ubuntu0.2 [196 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ trusty/main python-minimal amd64 2.7.5-5ubuntu3 [27.5 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ trusty/main python amd64 2.7.5-5ubuntu3 [134 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ trusty-updates/main python-pkg-resources all 3.3-1ubuntu2 [61.9 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ trusty-updates/main python-setuptools all 3.3-1ubuntu2 [230 kB]
Fetched 4018 kB in 2s (1942 kB/s)
Selecting previously unselected package libpython2.7-minimal:amd64.
(Reading database ... 11542 files and directories currently installed.)
Preparing to unpack .../libpython2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb ...
Unpacking libpython2.7-minimal:amd64 (2.7.6-8ubuntu0.2) ...
Selecting previously unselected package python2.7-minimal.
Preparing to unpack .../python2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb ...
Unpacking python2.7-minimal (2.7.6-8ubuntu0.2) ...
Selecting previously unselected package libpython2.7-stdlib:amd64.
Preparing to unpack .../libpython2.7-stdlib_2.7.6-8ubuntu0.2_amd64.deb ...
Unpacking libpython2.7-stdlib:amd64 (2.7.6-8ubuntu0.2) ...
Selecting previously unselected package libpython-stdlib:amd64.
Preparing to unpack .../libpython-stdlib_2.7.5-5ubuntu3_amd64.deb ...
Unpacking libpython-stdlib:amd64 (2.7.5-5ubuntu3) ...
Selecting previously unselected package python2.7.
Preparing to unpack .../python2.7_2.7.6-8ubuntu0.2_amd64.deb ...
Unpacking python2.7 (2.7.6-8ubuntu0.2) ...
Selecting previously unselected package python-minimal.
Preparing to unpack .../python-minimal_2.7.5-5ubuntu3_amd64.deb ...
Unpacking python-minimal (2.7.5-5ubuntu3) ...
Selecting previously unselected package python.
Preparing to unpack .../python_2.7.5-5ubuntu3_amd64.deb ...
Unpacking python (2.7.5-5ubuntu3) ...
Selecting previously unselected package python-pkg-resources.
Preparing to unpack .../python-pkg-resources_3.3-1ubuntu2_all.deb ...
Unpacking python-pkg-resources (3.3-1ubuntu2) ...
Selecting previously unselected package python-setuptools.
Preparing to unpack .../python-setuptools_3.3-1ubuntu2_all.deb ...
Unpacking python-setuptools (3.3-1ubuntu2) ...
Processing triggers for mime-support (3.54ubuntu1.1) ...
Setting up libpython2.7-minimal:amd64 (2.7.6-8ubuntu0.2) ...
Setting up python2.7-minimal (2.7.6-8ubuntu0.2) ...
Setting up libpython2.7-stdlib:amd64 (2.7.6-8ubuntu0.2) ...
Setting up libpython-stdlib:amd64 (2.7.5-5ubuntu3) ...
Setting up python2.7 (2.7.6-8ubuntu0.2) ...
Setting up python-minimal (2.7.5-5ubuntu3) ...
Setting up python (2.7.5-5ubuntu3) ...
Setting up python-pkg-resources (3.3-1ubuntu2) ...
Setting up python-setuptools (3.3-1ubuntu2) ...
running install
running bdist_egg
running egg_info
creating pip.egg-info
writing requirements to pip.egg-info/requires.txt
writing pip.egg-info/PKG-INFO
writing top-level names to pip.egg-info/top_level.txt
writing dependency_links to pip.egg-info/dependency_links.txt
writing entry points to pip.egg-info/entry_points.txt
writing manifest file 'pip.egg-info/SOURCES.txt'
reading manifest file 'pip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
writing manifest file 'pip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/pip
copying pip/__init__.py -> build/lib.linux-x86_64-2.7/pip
copying pip/__main__.py -> build/lib.linux-x86_64-2.7/pip
copying pip/basecommand.py -> build/lib.linux-x86_64-2.7/pip
copying pip/baseparser.py -> build/lib.linux-x86_64-2.7/pip
copying pip/cmdoptions.py -> build/lib.linux-x86_64-2.7/pip
copying pip/download.py -> build/lib.linux-x86_64-2.7/pip
copying pip/exceptions.py -> build/lib.linux-x86_64-2.7/pip
copying pip/index.py -> build/lib.linux-x86_64-2.7/pip
copying pip/locations.py -> build/lib.linux-x86_64-2.7/pip
copying pip/pep425tags.py -> build/lib.linux-x86_64-2.7/pip
copying pip/status_codes.py -> build/lib.linux-x86_64-2.7/pip
copying pip/wheel.py -> build/lib.linux-x86_64-2.7/pip
creating build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/ipaddress.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/pyparsing.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/re-vendor.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/retrying.py -> build/lib.linux-x86_64-2.7/pip/_vendor
copying pip/_vendor/six.py -> build/lib.linux-x86_64-2.7/pip/_vendor
creating build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/__init__.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/completion.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/download.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/freeze.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/hash.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/help.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/install.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/list.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/search.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/show.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/uninstall.py -> build/lib.linux-x86_64-2.7/pip/commands
copying pip/commands/wheel.py -> build/lib.linux-x86_64-2.7/pip/commands
creating build/lib.linux-x86_64-2.7/pip/compat
copying pip/compat/__init__.py -> build/lib.linux-x86_64-2.7/pip/compat
copying pip/compat/dictconfig.py -> build/lib.linux-x86_64-2.7/pip/compat
creating build/lib.linux-x86_64-2.7/pip/models
copying pip/models/__init__.py -> build/lib.linux-x86_64-2.7/pip/models
copying pip/models/index.py -> build/lib.linux-x86_64-2.7/pip/models
creating build/lib.linux-x86_64-2.7/pip/operations
copying pip/operations/__init__.py -> build/lib.linux-x86_64-2.7/pip/operations
copying pip/operations/freeze.py -> build/lib.linux-x86_64-2.7/pip/operations
creating build/lib.linux-x86_64-2.7/pip/req
copying pip/req/__init__.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_file.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_install.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_set.py -> build/lib.linux-x86_64-2.7/pip/req
copying pip/req/req_uninstall.py -> build/lib.linux-x86_64-2.7/pip/req
creating build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/__init__.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/appdirs.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/build.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/deprecation.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/encoding.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/filesystem.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/hashes.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/logging.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/outdated.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/setuptools_build.py -> build/lib.linux-x86_64-2.7/pip/utils
copying pip/utils/ui.py -> build/lib.linux-x86_64-2.7/pip/utils
creating build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/__init__.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/bazaar.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/git.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/mercurial.py -> build/lib.linux-x86_64-2.7/pip/vcs
copying pip/vcs/subversion.py -> build/lib.linux-x86_64-2.7/pip/vcs
creating build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib
creating build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/_cmd.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/adapter.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/controller.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/filewrapper.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/heuristics.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/serialize.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/wrapper.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol
creating build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/ansi.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/ansitowin32.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/initialise.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/win32.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
copying pip/_vendor/colorama/winterm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/colorama
creating build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/database.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/index.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/locators.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/manifest.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/metadata.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/resources.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/scripts.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/util.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/version.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/wheel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/constants.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/html5parser.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/ihatexml.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/inputstream.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/sanitizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/tokenizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
copying pip/_vendor/html5lib/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib
creating build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/linklockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/mkdirlockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/pidlockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/sqlitelockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
copying pip/_vendor/lockfile/symlinklockfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/lockfile
creating build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/__about__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/_compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/_structures.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/markers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/requirements.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/specifiers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
copying pip/_vendor/packaging/version.py -> build/lib.linux-x86_64-2.7/pip/_vendor/packaging
creating build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources
copying pip/_vendor/pkg_resources/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources
creating build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/bar.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/counter.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/helpers.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
copying pip/_vendor/progress/spinner.py -> build/lib.linux-x86_64-2.7/pip/_vendor/progress
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/adapters.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/api.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/auth.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/certs.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/cookies.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/exceptions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/hooks.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/models.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/sessions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/status_codes.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/structures.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/requests/utils.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
creating build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/file_cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/redis_cache.py -> build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches
creating build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/misc.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/shutil.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/sysconfig.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/tarfile.py -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/lint.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/optionaltags.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/sanitizer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/whitespace.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/htmlserializer.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/sax.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/dom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/dom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/etree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/genshistream.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/pulldom.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers
creating build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/_base.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/datrie.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/py.py -> build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages
copying pip/_vendor/requests/packages/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5freq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardetect.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardistribution.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/compat.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/constants.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/cp949prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escsm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jisfreq.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jpcntx.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/latin1prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcssm.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sjisprober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/universaldetector.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/utf8prober.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/_collections.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connection.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/exceptions.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/fields.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/filepost.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/request.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/response.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/six.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/connection.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/request.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/response.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/retry.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/url.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util
creating build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/distlib/t32.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/t64.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/w32.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/distlib/w64.exe -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib
copying pip/_vendor/requests/cacert.pem -> build/lib.linux-x86_64-2.7/pip/_vendor/requests
copying pip/_vendor/distlib/_backport/sysconfig.cfg -> build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/__init__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/__main__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/basecommand.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/baseparser.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/cmdoptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/download.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/exceptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/index.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/locations.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/pep425tags.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/status_codes.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib.linux-x86_64-2.7/pip/wheel.py -> build/bdist.linux-x86_64/egg/pip
creating build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/ipaddress.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/pyparsing.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/re-vendor.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/retrying.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib.linux-x86_64-2.7/pip/_vendor/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor
creating build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/_markerlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/_cmd.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/adapter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/controller.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/filewrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/heuristics.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/serialize.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/wrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/file_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib.linux-x86_64-2.7/pip/_vendor/cachecontrol/caches/redis_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
creating build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/ansi.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/ansitowin32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/initialise.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/win32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib.linux-x86_64-2.7/pip/_vendor/colorama/winterm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/database.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/index.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/locators.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/manifest.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/metadata.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/resources.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/scripts.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/util.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/wheel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/misc.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/shutil.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/sysconfig.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/tarfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/_backport/sysconfig.cfg -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/t32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/t64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/w32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib.linux-x86_64-2.7/pip/_vendor/distlib/w64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/html5parser.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/ihatexml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/inputstream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/tokenizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/lint.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/optionaltags.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/filters/whitespace.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/serializer/htmlserializer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treeadapters/sax.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/genshistream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/treewalkers/pulldom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/datrie.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib.linux-x86_64-2.7/pip/_vendor/html5lib/trie/py.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
creating build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/linklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/mkdirlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/pidlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/sqlitelockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib.linux-x86_64-2.7/pip/_vendor/lockfile/symlinklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
creating build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/__about__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/_compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/_structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/requirements.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/specifiers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib.linux-x86_64-2.7/pip/_vendor/packaging/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
creating build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
copying build/lib.linux-x86_64-2.7/pip/_vendor/pkg_resources/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
creating build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/bar.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/counter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/helpers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib.linux-x86_64-2.7/pip/_vendor/progress/spinner.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/adapters.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/api.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/auth.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/certs.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/cookies.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/hooks.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/models.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/sessions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/status_codes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/big5freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/big5prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/chardetect.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/chardistribution.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/charsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/cp949prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/escprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/escsm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euckrprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/euctwprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/jisfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/jpcntx.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/latin1prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/mbcssm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/sjisprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/universaldetector.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/chardet/utf8prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/_collections.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/fields.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/filepost.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/retry.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/packages/urllib3/util/url.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib.linux-x86_64-2.7/pip/_vendor/requests/cacert.pem -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/__init__.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/completion.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/download.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/freeze.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/hash.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/help.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/install.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/list.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/search.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/show.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/uninstall.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib.linux-x86_64-2.7/pip/commands/wheel.py -> build/bdist.linux-x86_64/egg/pip/commands
creating build/bdist.linux-x86_64/egg/pip/compat
copying build/lib.linux-x86_64-2.7/pip/compat/__init__.py -> build/bdist.linux-x86_64/egg/pip/compat
copying build/lib.linux-x86_64-2.7/pip/compat/dictconfig.py -> build/bdist.linux-x86_64/egg/pip/compat
creating build/bdist.linux-x86_64/egg/pip/models
copying build/lib.linux-x86_64-2.7/pip/models/__init__.py -> build/bdist.linux-x86_64/egg/pip/models
copying build/lib.linux-x86_64-2.7/pip/models/index.py -> build/bdist.linux-x86_64/egg/pip/models
creating build/bdist.linux-x86_64/egg/pip/operations
copying build/lib.linux-x86_64-2.7/pip/operations/__init__.py -> build/bdist.linux-x86_64/egg/pip/operations
copying build/lib.linux-x86_64-2.7/pip/operations/freeze.py -> build/bdist.linux-x86_64/egg/pip/operations
creating build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/__init__.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_file.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_install.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_set.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib.linux-x86_64-2.7/pip/req/req_uninstall.py -> build/bdist.linux-x86_64/egg/pip/req
creating build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/__init__.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/appdirs.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/deprecation.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/encoding.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/filesystem.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/hashes.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/logging.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/outdated.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/setuptools_build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib.linux-x86_64-2.7/pip/utils/ui.py -> build/bdist.linux-x86_64/egg/pip/utils
creating build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/__init__.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/bazaar.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/git.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/mercurial.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib.linux-x86_64-2.7/pip/vcs/subversion.py -> build/bdist.linux-x86_64/egg/pip/vcs
byte-compiling build/bdist.linux-x86_64/egg/pip/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/__main__.py to __main__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/basecommand.py to basecommand.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/baseparser.py to baseparser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/cmdoptions.py to cmdoptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/locations.py to locations.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/pep425tags.py to pep425tags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/ipaddress.py to ipaddress.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pyparsing.py to pyparsing.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/re-vendor.py to re-vendor.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/retrying.py to retrying.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/_cmd.py to _cmd.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/adapter.py to adapter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/cache.py to cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/controller.py to controller.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/filewrapper.py to filewrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/heuristics.py to heuristics.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/serialize.py to serialize.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/wrapper.py to wrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/file_cache.py to file_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/redis_cache.py to redis_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansi.py to ansi.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansitowin32.py to ansitowin32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/initialise.py to initialise.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/win32.py to win32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/winterm.py to winterm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/database.py to database.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/locators.py to locators.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/manifest.py to manifest.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/metadata.py to metadata.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/resources.py to resources.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/scripts.py to scripts.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/util.py to util.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/misc.py to misc.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/shutil.py to shutil.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/sysconfig.py to sysconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/tarfile.py to tarfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/html5parser.py to html5parser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/ihatexml.py to ihatexml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/inputstream.py to inputstream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/tokenizer.py to tokenizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py to alphabeticalattributes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/inject_meta_charset.py to inject_meta_charset.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/lint.py to lint.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/optionaltags.py to optionaltags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/whitespace.py to whitespace.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/htmlserializer.py to htmlserializer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/sax.py to sax.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py to etree_lxml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/genshistream.py to genshistream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/lxmletree.py to lxmletree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/pulldom.py to pulldom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/datrie.py to datrie.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/py.py to py.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/linklockfile.py to linklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/mkdirlockfile.py to mkdirlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/pidlockfile.py to pidlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/sqlitelockfile.py to sqlitelockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/symlinklockfile.py to symlinklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__about__.py to __about__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_compat.py to _compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_structures.py to _structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/requirements.py to requirements.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/specifiers.py to specifiers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/bar.py to bar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/counter.py to counter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/helpers.py to helpers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/spinner.py to spinner.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/adapters.py to adapters.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/api.py to api.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/auth.py to auth.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/certs.py to certs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/cookies.py to cookies.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/hooks.py to hooks.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/models.py to models.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/sessions.py to sessions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/structures.py to structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5freq.py to big5freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5prober.py to big5prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardetect.py to chardetect.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardistribution.py to chardistribution.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetgroupprober.py to charsetgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetprober.py to charsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/codingstatemachine.py to codingstatemachine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/cp949prober.py to cp949prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escprober.py to escprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escsm.py to escsm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/eucjpprober.py to eucjpprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrfreq.py to euckrfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrprober.py to euckrprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwfreq.py to euctwfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwprober.py to euctwprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312freq.py to gb2312freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312prober.py to gb2312prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/hebrewprober.py to hebrewprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jisfreq.py to jisfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jpcntx.py to jpcntx.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py to langbulgarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py to langcyrillicmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langgreekmodel.py to langgreekmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhebrewmodel.py to langhebrewmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhungarianmodel.py to langhungarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langthaimodel.py to langthaimodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/latin1prober.py to latin1prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcharsetprober.py to mbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py to mbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcssm.py to mbcssm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcharsetprober.py to sbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py to sbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sjisprober.py to sjisprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/universaldetector.py to universaldetector.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/utf8prober.py to utf8prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/_collections.py to _collections.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connectionpool.py to connectionpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/fields.py to fields.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/filepost.py to filepost.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/poolmanager.py to poolmanager.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/appengine.py to appengine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py to ntlmpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py to pyopenssl.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py to ordered_dict.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py to _implementation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/retry.py to retry.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py to ssl_.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/timeout.py to timeout.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/url.py to url.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/completion.py to completion.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/hash.py to hash.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/help.py to help.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/install.py to install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/list.py to list.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/search.py to search.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/show.py to show.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/uninstall.py to uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/dictconfig.py to dictconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_file.py to req_file.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_install.py to req_install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_set.py to req_set.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_uninstall.py to req_uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/appdirs.py to appdirs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/build.py to build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/deprecation.py to deprecation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/encoding.py to encoding.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/filesystem.py to filesystem.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/hashes.py to hashes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/logging.py to logging.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/outdated.py to outdated.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/setuptools_build.py to setuptools_build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/ui.py to ui.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/bazaar.py to bazaar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/git.py to git.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/mercurial.py to mercurial.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/subversion.py to subversion.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
creating dist
creating 'dist/pip-8.1.0.dev0-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing pip-8.1.0.dev0-py2.7.egg
creating /usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg
Extracting pip-8.1.0.dev0-py2.7.egg to /usr/local/lib/python2.7/dist-packages
Adding pip 8.1.0.dev0 to easy-install.pth file
Installing pip script to /usr/local/bin
Installing pip2.7 script to /usr/local/bin
Installing pip2 script to /usr/local/bin
Installed /usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg
Processing dependencies for pip==8.1.0.dev0
Finished processing dependencies for pip==8.1.0.dev0
Reading package lists...
Building dependency tree...
Reading state information...
python3 is already the newest version.
The following NEW packages will be installed:
python3-pkg-resources python3-setuptools
0 upgraded, 2 newly installed, 0 to remove and 1 not upgraded.
Need to get 176 kB of archives.
After this operation, 877 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main python3-pkg-resources all 3.3-1ubuntu2 [31.7 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main python3-setuptools all 3.3-1ubuntu2 [144 kB]
Fetched 176 kB in 0s (249 kB/s)
Selecting previously unselected package python3-pkg-resources.
(Reading database ... 12440 files and directories currently installed.)
Preparing to unpack .../python3-pkg-resources_3.3-1ubuntu2_all.deb ...
Unpacking python3-pkg-resources (3.3-1ubuntu2) ...
Selecting previously unselected package python3-setuptools.
Preparing to unpack .../python3-setuptools_3.3-1ubuntu2_all.deb ...
Unpacking python3-setuptools (3.3-1ubuntu2) ...
Setting up python3-pkg-resources (3.3-1ubuntu2) ...
Setting up python3-setuptools (3.3-1ubuntu2) ...
running install
Checking .pth file support in /usr/local/lib/python3.4/dist-packages/
/usr/bin/python3 -E -c pass
TEST PASSED: /usr/local/lib/python3.4/dist-packages/ appears to support .pth files
running bdist_egg
running egg_info
writing pip.egg-info/PKG-INFO
writing requirements to pip.egg-info/requires.txt
writing dependency_links to pip.egg-info/dependency_links.txt
writing top-level names to pip.egg-info/top_level.txt
writing entry points to pip.egg-info/entry_points.txt
reading manifest file 'pip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
writing manifest file 'pip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build/lib
creating build/lib/pip
copying pip/__init__.py -> build/lib/pip
copying pip/__main__.py -> build/lib/pip
copying pip/basecommand.py -> build/lib/pip
copying pip/baseparser.py -> build/lib/pip
copying pip/cmdoptions.py -> build/lib/pip
copying pip/download.py -> build/lib/pip
copying pip/exceptions.py -> build/lib/pip
copying pip/index.py -> build/lib/pip
copying pip/locations.py -> build/lib/pip
copying pip/pep425tags.py -> build/lib/pip
copying pip/status_codes.py -> build/lib/pip
copying pip/wheel.py -> build/lib/pip
creating build/lib/pip/_vendor
copying pip/_vendor/__init__.py -> build/lib/pip/_vendor
copying pip/_vendor/ipaddress.py -> build/lib/pip/_vendor
copying pip/_vendor/pyparsing.py -> build/lib/pip/_vendor
copying pip/_vendor/re-vendor.py -> build/lib/pip/_vendor
copying pip/_vendor/retrying.py -> build/lib/pip/_vendor
copying pip/_vendor/six.py -> build/lib/pip/_vendor
creating build/lib/pip/commands
copying pip/commands/__init__.py -> build/lib/pip/commands
copying pip/commands/completion.py -> build/lib/pip/commands
copying pip/commands/download.py -> build/lib/pip/commands
copying pip/commands/freeze.py -> build/lib/pip/commands
copying pip/commands/hash.py -> build/lib/pip/commands
copying pip/commands/help.py -> build/lib/pip/commands
copying pip/commands/install.py -> build/lib/pip/commands
copying pip/commands/list.py -> build/lib/pip/commands
copying pip/commands/search.py -> build/lib/pip/commands
copying pip/commands/show.py -> build/lib/pip/commands
copying pip/commands/uninstall.py -> build/lib/pip/commands
copying pip/commands/wheel.py -> build/lib/pip/commands
creating build/lib/pip/compat
copying pip/compat/__init__.py -> build/lib/pip/compat
copying pip/compat/dictconfig.py -> build/lib/pip/compat
creating build/lib/pip/models
copying pip/models/__init__.py -> build/lib/pip/models
copying pip/models/index.py -> build/lib/pip/models
creating build/lib/pip/operations
copying pip/operations/__init__.py -> build/lib/pip/operations
copying pip/operations/freeze.py -> build/lib/pip/operations
creating build/lib/pip/req
copying pip/req/__init__.py -> build/lib/pip/req
copying pip/req/req_file.py -> build/lib/pip/req
copying pip/req/req_install.py -> build/lib/pip/req
copying pip/req/req_set.py -> build/lib/pip/req
copying pip/req/req_uninstall.py -> build/lib/pip/req
creating build/lib/pip/utils
copying pip/utils/__init__.py -> build/lib/pip/utils
copying pip/utils/appdirs.py -> build/lib/pip/utils
copying pip/utils/build.py -> build/lib/pip/utils
copying pip/utils/deprecation.py -> build/lib/pip/utils
copying pip/utils/encoding.py -> build/lib/pip/utils
copying pip/utils/filesystem.py -> build/lib/pip/utils
copying pip/utils/hashes.py -> build/lib/pip/utils
copying pip/utils/logging.py -> build/lib/pip/utils
copying pip/utils/outdated.py -> build/lib/pip/utils
copying pip/utils/setuptools_build.py -> build/lib/pip/utils
copying pip/utils/ui.py -> build/lib/pip/utils
creating build/lib/pip/vcs
copying pip/vcs/__init__.py -> build/lib/pip/vcs
copying pip/vcs/bazaar.py -> build/lib/pip/vcs
copying pip/vcs/git.py -> build/lib/pip/vcs
copying pip/vcs/mercurial.py -> build/lib/pip/vcs
copying pip/vcs/subversion.py -> build/lib/pip/vcs
creating build/lib/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/__init__.py -> build/lib/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/markers.py -> build/lib/pip/_vendor/_markerlib
creating build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/__init__.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/_cmd.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/adapter.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/cache.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/compat.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/controller.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/filewrapper.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/heuristics.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/serialize.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/wrapper.py -> build/lib/pip/_vendor/cachecontrol
creating build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/__init__.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/ansi.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/ansitowin32.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/initialise.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/win32.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/winterm.py -> build/lib/pip/_vendor/colorama
creating build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/__init__.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/compat.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/database.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/index.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/locators.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/manifest.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/markers.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/metadata.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/resources.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/scripts.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/util.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/version.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/wheel.py -> build/lib/pip/_vendor/distlib
creating build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/__init__.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/constants.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/html5parser.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/ihatexml.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/inputstream.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/sanitizer.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/tokenizer.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/utils.py -> build/lib/pip/_vendor/html5lib
creating build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/__init__.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/linklockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/mkdirlockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/pidlockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/sqlitelockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/symlinklockfile.py -> build/lib/pip/_vendor/lockfile
creating build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/__about__.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/__init__.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/_compat.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/_structures.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/markers.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/requirements.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/specifiers.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/utils.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/version.py -> build/lib/pip/_vendor/packaging
creating build/lib/pip/_vendor/pkg_resources
copying pip/_vendor/pkg_resources/__init__.py -> build/lib/pip/_vendor/pkg_resources
creating build/lib/pip/_vendor/progress
copying pip/_vendor/progress/__init__.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/bar.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/counter.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/helpers.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/spinner.py -> build/lib/pip/_vendor/progress
creating build/lib/pip/_vendor/requests
copying pip/_vendor/requests/__init__.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/adapters.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/api.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/auth.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/certs.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/compat.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/cookies.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/exceptions.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/hooks.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/models.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/sessions.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/status_codes.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/structures.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/utils.py -> build/lib/pip/_vendor/requests
creating build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/__init__.py -> build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/file_cache.py -> build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/redis_cache.py -> build/lib/pip/_vendor/cachecontrol/caches
creating build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/__init__.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/misc.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/shutil.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/sysconfig.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/tarfile.py -> build/lib/pip/_vendor/distlib/_backport
creating build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/__init__.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/_base.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/lint.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/optionaltags.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/sanitizer.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/whitespace.py -> build/lib/pip/_vendor/html5lib/filters
creating build/lib/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/__init__.py -> build/lib/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/htmlserializer.py -> build/lib/pip/_vendor/html5lib/serializer
creating build/lib/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/__init__.py -> build/lib/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/sax.py -> build/lib/pip/_vendor/html5lib/treeadapters
creating build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/__init__.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/_base.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/dom.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/lib/pip/_vendor/html5lib/treebuilders
creating build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/__init__.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/_base.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/dom.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/etree.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/genshistream.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/pulldom.py -> build/lib/pip/_vendor/html5lib/treewalkers
creating build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/__init__.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/_base.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/datrie.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/py.py -> build/lib/pip/_vendor/html5lib/trie
creating build/lib/pip/_vendor/requests/packages
copying pip/_vendor/requests/packages/__init__.py -> build/lib/pip/_vendor/requests/packages
creating build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/__init__.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5freq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardetect.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardistribution.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/compat.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/constants.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/cp949prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escsm.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jisfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jpcntx.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/latin1prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcssm.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sjisprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/universaldetector.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/utf8prober.py -> build/lib/pip/_vendor/requests/packages/chardet
creating build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/_collections.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connection.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/exceptions.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/fields.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/filepost.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/request.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/response.py -> build/lib/pip/_vendor/requests/packages/urllib3
creating build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
creating build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/six.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
creating build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/connection.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/request.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/response.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/retry.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/url.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
creating build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/distlib/t32.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/t64.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/w32.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/w64.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/requests/cacert.pem -> build/lib/pip/_vendor/requests
copying pip/_vendor/distlib/_backport/sysconfig.cfg -> build/lib/pip/_vendor/distlib/_backport
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__init__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__main__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/basecommand.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/baseparser.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/cmdoptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/download.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/exceptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/index.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/locations.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/pep425tags.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/status_codes.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/wheel.py -> build/bdist.linux-x86_64/egg/pip
creating build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/ipaddress.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/pyparsing.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/re-vendor.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/retrying.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor
creating build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/_cmd.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/adapter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/controller.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/filewrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/heuristics.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/serialize.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/wrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/file_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/redis_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
creating build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansi.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansitowin32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/initialise.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/win32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/winterm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/database.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/index.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/locators.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/manifest.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/metadata.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/resources.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/scripts.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/util.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/wheel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/misc.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/shutil.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/tarfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.cfg -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/t32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/t64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/html5parser.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/ihatexml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/inputstream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/tokenizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/lint.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/optionaltags.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/whitespace.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/htmlserializer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/sax.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/genshistream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/pulldom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/datrie.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/py.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
creating build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/linklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/mkdirlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/pidlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/sqlitelockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/symlinklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
creating build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__about__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/requirements.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/specifiers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
creating build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
copying build/lib/pip/_vendor/pkg_resources/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
creating build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/bar.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/counter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/helpers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/spinner.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/adapters.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/api.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/auth.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/certs.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/cookies.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/hooks.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/models.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/sessions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/status_codes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
copying build/lib/pip/_vendor/requests/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardetect.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardistribution.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/cp949prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escsm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jisfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jpcntx.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/latin1prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcssm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sjisprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/universaldetector.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/utf8prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/_collections.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/fields.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/filepost.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/retry.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/url.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/cacert.pem -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/__init__.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/completion.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/download.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/freeze.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/hash.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/help.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/install.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/list.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/search.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/show.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/uninstall.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/wheel.py -> build/bdist.linux-x86_64/egg/pip/commands
creating build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/__init__.py -> build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/dictconfig.py -> build/bdist.linux-x86_64/egg/pip/compat
creating build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/__init__.py -> build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/index.py -> build/bdist.linux-x86_64/egg/pip/models
creating build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/__init__.py -> build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/freeze.py -> build/bdist.linux-x86_64/egg/pip/operations
creating build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/__init__.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_file.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_install.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_set.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_uninstall.py -> build/bdist.linux-x86_64/egg/pip/req
creating build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/__init__.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/appdirs.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/deprecation.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/encoding.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/filesystem.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/hashes.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/logging.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/outdated.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/setuptools_build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/ui.py -> build/bdist.linux-x86_64/egg/pip/utils
creating build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/__init__.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/bazaar.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/git.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/mercurial.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/subversion.py -> build/bdist.linux-x86_64/egg/pip/vcs
byte-compiling build/bdist.linux-x86_64/egg/pip/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/__main__.py to __main__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/basecommand.py to basecommand.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/baseparser.py to baseparser.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/cmdoptions.py to cmdoptions.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/download.py to download.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/exceptions.py to exceptions.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/index.py to index.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/locations.py to locations.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/pep425tags.py to pep425tags.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/status_codes.py to status_codes.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/wheel.py to wheel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/ipaddress.py to ipaddress.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pyparsing.py to pyparsing.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/re-vendor.py to re-vendor.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/retrying.py to retrying.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/six.py to six.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/markers.py to markers.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/_cmd.py to _cmd.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/adapter.py to adapter.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/cache.py to cache.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/compat.py to compat.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/controller.py to controller.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/filewrapper.py to filewrapper.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/heuristics.py to heuristics.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/serialize.py to serialize.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/wrapper.py to wrapper.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/file_cache.py to file_cache.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/redis_cache.py to redis_cache.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansi.py to ansi.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansitowin32.py to ansitowin32.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/initialise.py to initialise.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/win32.py to win32.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/winterm.py to winterm.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/compat.py to compat.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/database.py to database.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/index.py to index.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/locators.py to locators.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/manifest.py to manifest.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/markers.py to markers.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/metadata.py to metadata.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/resources.py to resources.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/scripts.py to scripts.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/util.py to util.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/version.py to version.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/wheel.py to wheel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/misc.py to misc.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/shutil.py to shutil.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/sysconfig.py to sysconfig.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/tarfile.py to tarfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/constants.py to constants.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/html5parser.py to html5parser.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/ihatexml.py to ihatexml.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/inputstream.py to inputstream.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/sanitizer.py to sanitizer.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/tokenizer.py to tokenizer.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/utils.py to utils.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/_base.py to _base.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py to alphabeticalattributes.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/inject_meta_charset.py to inject_meta_charset.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/lint.py to lint.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/optionaltags.py to optionaltags.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/sanitizer.py to sanitizer.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/whitespace.py to whitespace.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/htmlserializer.py to htmlserializer.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/sax.py to sax.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/_base.py to _base.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/dom.py to dom.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree.py to etree.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py to etree_lxml.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/_base.py to _base.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/dom.py to dom.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/etree.py to etree.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/genshistream.py to genshistream.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/lxmletree.py to lxmletree.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/pulldom.py to pulldom.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/_base.py to _base.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/datrie.py to datrie.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/py.py to py.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/linklockfile.py to linklockfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/mkdirlockfile.py to mkdirlockfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/pidlockfile.py to pidlockfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/sqlitelockfile.py to sqlitelockfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/symlinklockfile.py to symlinklockfile.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__about__.py to __about__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_compat.py to _compat.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_structures.py to _structures.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/markers.py to markers.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/requirements.py to requirements.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/specifiers.py to specifiers.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/utils.py to utils.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/version.py to version.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/bar.py to bar.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/counter.py to counter.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/helpers.py to helpers.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/spinner.py to spinner.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/adapters.py to adapters.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/api.py to api.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/auth.py to auth.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/certs.py to certs.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/compat.py to compat.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/cookies.py to cookies.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/exceptions.py to exceptions.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/hooks.py to hooks.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/models.py to models.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/sessions.py to sessions.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/status_codes.py to status_codes.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/structures.py to structures.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/utils.py to utils.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5freq.py to big5freq.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5prober.py to big5prober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardetect.py to chardetect.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardistribution.py to chardistribution.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetgroupprober.py to charsetgroupprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetprober.py to charsetprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/codingstatemachine.py to codingstatemachine.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/compat.py to compat.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/constants.py to constants.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/cp949prober.py to cp949prober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escprober.py to escprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escsm.py to escsm.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/eucjpprober.py to eucjpprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrfreq.py to euckrfreq.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrprober.py to euckrprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwfreq.py to euctwfreq.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwprober.py to euctwprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312freq.py to gb2312freq.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312prober.py to gb2312prober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/hebrewprober.py to hebrewprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jisfreq.py to jisfreq.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jpcntx.py to jpcntx.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py to langbulgarianmodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py to langcyrillicmodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langgreekmodel.py to langgreekmodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhebrewmodel.py to langhebrewmodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhungarianmodel.py to langhungarianmodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langthaimodel.py to langthaimodel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/latin1prober.py to latin1prober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcharsetprober.py to mbcharsetprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py to mbcsgroupprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcssm.py to mbcssm.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcharsetprober.py to sbcharsetprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py to sbcsgroupprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sjisprober.py to sjisprober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/universaldetector.py to universaldetector.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/utf8prober.py to utf8prober.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/_collections.py to _collections.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connection.py to connection.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connectionpool.py to connectionpool.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/exceptions.py to exceptions.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/fields.py to fields.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/filepost.py to filepost.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/poolmanager.py to poolmanager.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/request.py to request.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/response.py to response.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/appengine.py to appengine.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py to ntlmpool.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py to pyopenssl.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py to ordered_dict.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/six.py to six.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py to _implementation.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/connection.py to connection.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/request.py to request.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/response.py to response.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/retry.py to retry.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py to ssl_.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/timeout.py to timeout.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/url.py to url.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/completion.py to completion.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/download.py to download.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/freeze.py to freeze.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/hash.py to hash.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/help.py to help.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/install.py to install.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/list.py to list.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/search.py to search.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/show.py to show.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/uninstall.py to uninstall.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/wheel.py to wheel.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/dictconfig.py to dictconfig.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/index.py to index.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/freeze.py to freeze.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_file.py to req_file.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_install.py to req_install.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_set.py to req_set.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_uninstall.py to req_uninstall.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/appdirs.py to appdirs.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/build.py to build.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/deprecation.py to deprecation.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/encoding.py to encoding.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/filesystem.py to filesystem.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/hashes.py to hashes.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/logging.py to logging.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/outdated.py to outdated.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/setuptools_build.py to setuptools_build.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/ui.py to ui.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/__init__.py to __init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/bazaar.py to bazaar.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/git.py to git.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/mercurial.py to mercurial.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/subversion.py to subversion.cpython-34.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
creating 'dist/pip-8.1.0.dev0-py3.4.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing pip-8.1.0.dev0-py3.4.egg
creating /usr/local/lib/python3.4/dist-packages/pip-8.1.0.dev0-py3.4.egg
Extracting pip-8.1.0.dev0-py3.4.egg to /usr/local/lib/python3.4/dist-packages
Adding pip 8.1.0.dev0 to easy-install.pth file
Installing pip3 script to /usr/local/bin
Installing pip script to /usr/local/bin
Installing pip3.4 script to /usr/local/bin
Installed /usr/local/lib/python3.4/dist-packages/pip-8.1.0.dev0-py3.4.egg
Processing dependencies for pip==8.1.0.dev0
Finished processing dependencies for pip==8.1.0.dev0
Ignoring indexes: https://pypi.python.org/simple
Collecting psycopg2
1 location(s) to search for versions of psycopg2:
* https://depot.galaxyproject.org/nate/wheelhouse
Skipping link https://depot.galaxyproject.org/nate/wheelhouse (from -f); not a file
Getting page https://depot.galaxyproject.org/nate/wheelhouse
Looking up "https://depot.galaxyproject.org/nate/wheelhouse" in the cache
No cache entry available
Starting new HTTPS connection (1): depot.galaxyproject.org
/usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:315: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning.
SNIMissingWarning
/usr/local/lib/python2.7/dist-packages/pip-8.1.0.dev0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:120: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
"GET /nate/wheelhouse HTTP/1.1" 301 184
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse"
Caching permanant redirect
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/" in the cache
No cache entry available
"GET /nate/wheelhouse/ HTTP/1.1" 200 None
Analyzing links from page https://depot.galaxyproject.org/nate/wheelhouse/
Skipping link https://depot.galaxyproject.org/nate/ (from https://depot.galaxyproject.org/nate/wheelhouse/); not a file
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Found link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/), version: 2.6.1
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp35-cp35m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Using version 2.6.1 (newest of versions: 2.6.1)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl" in the cache
No cache entry available
"GET /nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl HTTP/1.1" 200 1981638
Downloading https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (2.0MB)
Downloading from URL https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/)
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl"
Caching due to etag
Installing collected packages: psycopg2
Successfully installed psycopg2-2.6.1
Cleaning up...
#### psycopg2 test on ubuntu:14.04 2.7.6
INSERT 0 1
id was: 5
SELECT 1
SELECT returned: (5, 'ubuntu:14.04')
#### end psycopg2 test on ubuntu:14.04 2.7.6
Ignoring indexes: https://pypi.python.org/simple
Collecting psycopg2
1 location(s) to search for versions of psycopg2:
* https://depot.galaxyproject.org/nate/wheelhouse
Skipping link https://depot.galaxyproject.org/nate/wheelhouse (from -f); not a file
Getting page https://depot.galaxyproject.org/nate/wheelhouse
Looking up "https://depot.galaxyproject.org/nate/wheelhouse" in the cache
Returning cached "301 Moved Permanently" response (ignoring date and etag information)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/" in the cache
No cache entry available
Starting new HTTPS connection (1): depot.galaxyproject.org
"GET /nate/wheelhouse/ HTTP/1.1" 200 None
Analyzing links from page https://depot.galaxyproject.org/nate/wheelhouse/
Skipping link https://depot.galaxyproject.org/nate/ (from https://depot.galaxyproject.org/nate/wheelhouse/); not a file
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Found link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/), version: 2.6.1
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp35-cp35m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Using version 2.6.1 (newest of versions: 2.6.1)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl" in the cache
No cache entry available
"GET /nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl HTTP/1.1" 200 1988618
Downloading https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (2.0MB)
Downloading from URL https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/)
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl"
Caching due to etag
Installing collected packages: psycopg2
Successfully installed psycopg2-2.6.1
Cleaning up...
#### psycopg2 test on ubuntu:14.04 3.4.3
INSERT 0 1
id was: 6
SELECT 1
SELECT returned: (6, 'ubuntu:14.04')
#### end psycopg2 test on ubuntu:14.04 3.4.3
git clone pip-clean pip && docker run --rm -v /home/nate/psycopg_test:/host/ --entrypoint=/bin/sh centos:6 -c "export IMAGE=centos:6 && yum -y install centos-release-SCL && yum install -y python-setuptools python27 python27-setuptools python33 python33-setuptools && . /opt/rh/python27/enable && . /opt/rh/python33/enable && cd /host/pip && python2.6 setup.py install && cd /host/pip && python2.7 setup.py install && cd /host/pip && python3 setup.py install && cd /host && rm -rf pip && pip2.6 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python2.6 psycopg_test.py | tee -a psycopg_test.log && pip2.7 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python2.7 psycopg_test.py | tee -a psycopg_test.log && pip3 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python3 psycopg_test.py | tee -a psycopg_test.log"
Cloning into 'pip'...
done.
Loaded plugins: fastestmirror
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package centos-release-SCL.x86_64 10:6-5.el6.centos will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
centos-release-SCL x86_64 10:6-5.el6.centos extras 3.9 k
Transaction Summary
================================================================================
Install 1 Package(s)
Total download size: 3.9 k
Installed size: 453
Downloading Packages:
warning: rpmts_HdrFromFdno: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
Importing GPG key 0xC105B9DE:
Userid : CentOS-6 Key (CentOS 6 Official Signing Key) <centos-6-key@centos.org>
Package: centos-release-6-7.el6.centos.12.3.x86_64 (installed)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : 10:centos-release-SCL-6-5.el6.centos.x86_64 1/1
Verifying : 10:centos-release-SCL-6-5.el6.centos.x86_64 1/1
Installed:
centos-release-SCL.x86_64 10:6-5.el6.centos
Complete!
Loaded plugins: fastestmirror
Setting up Install Process
Determining fastest mirrors
* base: mirror.cisp.com
* extras: mirror.netdepot.com
* updates: mirror.netdepot.com
No package python27-setuptools available.
No package python33-setuptools available.
Resolving Dependencies
--> Running transaction check
---> Package python-setuptools.noarch 0:0.6.10-3.el6 will be installed
---> Package python27.x86_64 0:1.1-16.el6.centos.alt will be installed
--> Processing Dependency: python27-python-werkzeug for package: python27-1.1-16.el6.centos.alt.x86_64
--> Processing Dependency: python27-python-virtualenv for package: python27-1.1-16.el6.centos.alt.x86_64
--> Processing Dependency: python27-python-sqlalchemy for package: python27-1.1-16.el6.centos.alt.x86_64
--> Processing Dependency: python27-python-sphinx for package: python27-1.1-16.el6.centos.alt.x86_64
--> Processing Dependency: python27-python-simplejson for package: python27-1.1-16.el6.centos.alt.x86_64
--> Processing Dependency: python27-python-setuptools for package: python27-1.1-16.el6.centos.alt.x86_64
--> Processing Dependency: python27-python-nose for package: python27-1.1-16.el6.centos.alt.x86_64
--> Processing Dependency: python27-python-jinja2 for package: python27-1.1-16.el6.centos.alt.x86_64
--> Processing Dependency: python27-python for package: python27-1.1-16.el6.centos.alt.x86_64
---> Package python33.x86_64 0:1.1-12.el6.centos.alt will be installed
--> Processing Dependency: python33-python-virtualenv for package: python33-1.1-12.el6.centos.alt.x86_64
--> Processing Dependency: python33-python-sqlalchemy for package: python33-1.1-12.el6.centos.alt.x86_64
--> Processing Dependency: python33-python-sphinx for package: python33-1.1-12.el6.centos.alt.x86_64
--> Processing Dependency: python33-python-simplejson for package: python33-1.1-12.el6.centos.alt.x86_64
--> Processing Dependency: python33-python-setuptools for package: python33-1.1-12.el6.centos.alt.x86_64
--> Processing Dependency: python33-python-nose for package: python33-1.1-12.el6.centos.alt.x86_64
--> Processing Dependency: python33-python-jinja2 for package: python33-1.1-12.el6.centos.alt.x86_64
--> Processing Dependency: python33-python for package: python33-1.1-12.el6.centos.alt.x86_64
--> Running transaction check
---> Package python27-python.x86_64 0:2.7.5-10.el6.centos.alt will be installed
--> Processing Dependency: python27-python-libs(x86-64) = 2.7.5-10.el6.centos.alt for package: python27-python-2.7.5-10.el6.centos.alt.x86_64
--> Processing Dependency: python27-runtime for package: python27-python-2.7.5-10.el6.centos.alt.x86_64
--> Processing Dependency: libpython2.7.so.1.0()(64bit) for package: python27-python-2.7.5-10.el6.centos.alt.x86_64
---> Package python27-python-jinja2.noarch 0:2.6-10.el6.centos.alt will be installed
--> Processing Dependency: python27-python-babel >= 0.8 for package: python27-python-jinja2-2.6-10.el6.centos.alt.noarch
--> Processing Dependency: python27-python-markupsafe for package: python27-python-jinja2-2.6-10.el6.centos.alt.noarch
---> Package python27-python-nose.noarch 0:1.3.0-1.el6.centos.alt will be installed
---> Package python27-python-setuptools.noarch 0:0.9.8-2.el6.centos.alt will be installed
---> Package python27-python-simplejson.x86_64 0:3.2.0-1.el6.centos.alt will be installed
---> Package python27-python-sphinx.noarch 0:1.1.3-7.el6.centos.alt will be installed
--> Processing Dependency: python27-python-pygments for package: python27-python-sphinx-1.1.3-7.el6.centos.alt.noarch
--> Processing Dependency: python27-python-docutils for package: python27-python-sphinx-1.1.3-7.el6.centos.alt.noarch
---> Package python27-python-sqlalchemy.x86_64 0:0.7.9-3.el6.centos.alt will be installed
---> Package python27-python-virtualenv.noarch 0:1.10.1-2.el6.centos.alt will be installed
--> Processing Dependency: python27-python-devel for package: python27-python-virtualenv-1.10.1-2.el6.centos.alt.noarch
---> Package python27-python-werkzeug.noarch 0:0.8.3-5.el6.centos.alt will be installed
---> Package python33-python.x86_64 0:3.3.2-14.el6.centos.alt will be installed
--> Processing Dependency: python33-python-libs(x86-64) = 3.3.2-14.el6.centos.alt for package: python33-python-3.3.2-14.el6.centos.alt.x86_64
--> Processing Dependency: python33-runtime for package: python33-python-3.3.2-14.el6.centos.alt.x86_64
--> Processing Dependency: libpython3.3m.so.1.0()(64bit) for package: python33-python-3.3.2-14.el6.centos.alt.x86_64
---> Package python33-python-jinja2.noarch 0:2.6-11.el6.centos.alt will be installed
--> Processing Dependency: python33-python-markupsafe for package: python33-python-jinja2-2.6-11.el6.centos.alt.noarch
---> Package python33-python-nose.noarch 0:1.3.0-1.el6.centos.alt will be installed
---> Package python33-python-setuptools.noarch 0:0.9.8-1.el6.centos.alt will be installed
---> Package python33-python-simplejson.x86_64 0:3.2.0-1.el6.centos.alt will be installed
---> Package python33-python-sphinx.noarch 0:1.1.3-8.el6.centos.alt will be installed
--> Processing Dependency: python33-python-pygments for package: python33-python-sphinx-1.1.3-8.el6.centos.alt.noarch
--> Processing Dependency: python33-python-docutils for package: python33-python-sphinx-1.1.3-8.el6.centos.alt.noarch
---> Package python33-python-sqlalchemy.noarch 0:0.7.9-4.el6.centos.alt will be installed
---> Package python33-python-virtualenv.noarch 0:1.10.1-1.el6.centos.alt will be installed
--> Processing Dependency: python33-python-devel for package: python33-python-virtualenv-1.10.1-1.el6.centos.alt.noarch
--> Running transaction check
---> Package python27-python-babel.noarch 0:0.9.6-7.el6.centos.alt will be installed
---> Package python27-python-devel.x86_64 0:2.7.5-10.el6.centos.alt will be installed
---> Package python27-python-docutils.noarch 0:0.11-1.el6.centos.alt will be installed
---> Package python27-python-libs.x86_64 0:2.7.5-10.el6.centos.alt will be installed
---> Package python27-python-markupsafe.x86_64 0:0.11-11.el6.centos.alt will be installed
---> Package python27-python-pygments.noarch 0:1.5-2.el6.centos.alt will be installed
---> Package python27-runtime.x86_64 0:1.1-16.el6.centos.alt will be installed
--> Processing Dependency: scl-utils for package: python27-runtime-1.1-16.el6.centos.alt.x86_64
---> Package python33-python-devel.x86_64 0:3.3.2-14.el6.centos.alt will be installed
---> Package python33-python-docutils.noarch 0:0.11-1.el6.centos.alt will be installed
---> Package python33-python-libs.x86_64 0:3.3.2-14.el6.centos.alt will be installed
---> Package python33-python-markupsafe.noarch 0:0.11-10.el6.centos.alt will be installed
---> Package python33-python-pygments.noarch 0:1.5-3.el6.centos.alt will be installed
---> Package python33-runtime.x86_64 0:1.1-12.el6.centos.alt will be installed
--> Running transaction check
---> Package scl-utils.x86_64 0:20120927-27.el6_6 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository
Size
================================================================================
Installing:
python-setuptools noarch 0.6.10-3.el6 base 336 k
python27 x86_64 1.1-16.el6.centos.alt scl 4.7 k
python33 x86_64 1.1-12.el6.centos.alt scl 4.2 k
Installing for dependencies:
python27-python x86_64 2.7.5-10.el6.centos.alt scl 80 k
python27-python-babel noarch 0.9.6-7.el6.centos.alt scl 1.4 M
python27-python-devel x86_64 2.7.5-10.el6.centos.alt scl 386 k
python27-python-docutils noarch 0.11-1.el6.centos.alt scl 1.6 M
python27-python-jinja2 noarch 2.6-10.el6.centos.alt scl 550 k
python27-python-libs x86_64 2.7.5-10.el6.centos.alt scl 5.5 M
python27-python-markupsafe x86_64 0.11-11.el6.centos.alt scl 25 k
python27-python-nose noarch 1.3.0-1.el6.centos.alt scl 290 k
python27-python-pygments noarch 1.5-2.el6.centos.alt scl 802 k
python27-python-setuptools noarch 0.9.8-2.el6.centos.alt scl 423 k
python27-python-simplejson x86_64 3.2.0-1.el6.centos.alt scl 174 k
python27-python-sphinx noarch 1.1.3-7.el6.centos.alt scl 1.1 M
python27-python-sqlalchemy x86_64 0.7.9-3.el6.centos.alt scl 2.1 M
python27-python-virtualenv noarch 1.10.1-2.el6.centos.alt scl 1.4 M
python27-python-werkzeug noarch 0.8.3-5.el6.centos.alt scl 556 k
python27-runtime x86_64 1.1-16.el6.centos.alt scl 1.0 M
python33-python x86_64 3.3.2-14.el6.centos.alt scl 43 k
python33-python-devel x86_64 3.3.2-14.el6.centos.alt scl 174 k
python33-python-docutils noarch 0.11-1.el6.centos.alt scl 1.6 M
python33-python-jinja2 noarch 2.6-11.el6.centos.alt scl 574 k
python33-python-libs x86_64 3.3.2-14.el6.centos.alt scl 6.2 M
python33-python-markupsafe noarch 0.11-10.el6.centos.alt scl 22 k
python33-python-nose noarch 1.3.0-1.el6.centos.alt scl 299 k
python33-python-pygments noarch 1.5-3.el6.centos.alt scl 816 k
python33-python-setuptools noarch 0.9.8-1.el6.centos.alt scl 434 k
python33-python-simplejson x86_64 3.2.0-1.el6.centos.alt scl 176 k
python33-python-sphinx noarch 1.1.3-8.el6.centos.alt scl 1.2 M
python33-python-sqlalchemy noarch 0.7.9-4.el6.centos.alt scl 2.2 M
python33-python-virtualenv noarch 1.10.1-1.el6.centos.alt scl 1.4 M
python33-runtime x86_64 1.1-12.el6.centos.alt scl 1.0 M
scl-utils x86_64 20120927-27.el6_6 base 22 k
Transaction Summary
================================================================================
Install 34 Package(s)
Total download size: 34 M
Installed size: 133 M
Downloading Packages:
--------------------------------------------------------------------------------
Total 7.6 MB/s | 34 MB 00:04
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : scl-utils-20120927-27.el6_6.x86_64 1/34
Installing : python27-runtime-1.1-16.el6.centos.alt.x86_64 2/34
Installing : python27-python-libs-2.7.5-10.el6.centos.alt.x86_64 3/34
Installing : python27-python-2.7.5-10.el6.centos.alt.x86_64 4/34
Installing : python27-python-setuptools-0.9.8-2.el6.centos.alt.noarch 5/34
Installing : python33-runtime-1.1-12.el6.centos.alt.x86_64 6/34
Installing : python33-python-libs-3.3.2-14.el6.centos.alt.x86_64 7/34
Installing : python33-python-3.3.2-14.el6.centos.alt.x86_64 8/34
Installing : python33-python-setuptools-0.9.8-1.el6.centos.alt.noarch 9/34
Installing : python33-python-pygments-1.5-3.el6.centos.alt.noarch 10/34
Installing : python33-python-nose-1.3.0-1.el6.centos.alt.noarch 11/34
Installing : python33-python-docutils-0.11-1.el6.centos.alt.noarch 12/34
Installing : python33-python-simplejson-3.2.0-1.el6.centos.alt.x86_64 13/34
Installing : python33-python-markupsafe-0.11-10.el6.centos.alt.noarch 14/34
Installing : python33-python-jinja2-2.6-11.el6.centos.alt.noarch 15/34
Installing : python33-python-sphinx-1.1.3-8.el6.centos.alt.noarch 16/34
Installing : python33-python-devel-3.3.2-14.el6.centos.alt.x86_64 17/34
Installing : python33-python-virtualenv-1.10.1-1.el6.centos.alt.noarc 18/34
Installing : python33-python-sqlalchemy-0.7.9-4.el6.centos.alt.noarch 19/34
Installing : python27-python-pygments-1.5-2.el6.centos.alt.noarch 20/34
Installing : python27-python-nose-1.3.0-1.el6.centos.alt.noarch 21/34
Installing : python27-python-werkzeug-0.8.3-5.el6.centos.alt.noarch 22/34
Installing : python27-python-docutils-0.11-1.el6.centos.alt.noarch 23/34
Installing : python27-python-sqlalchemy-0.7.9-3.el6.centos.alt.x86_64 24/34
Installing : python27-python-markupsafe-0.11-11.el6.centos.alt.x86_64 25/34
Installing : python27-python-devel-2.7.5-10.el6.centos.alt.x86_64 26/34
Installing : python27-python-virtualenv-1.10.1-2.el6.centos.alt.noarc 27/34
Installing : python27-python-simplejson-3.2.0-1.el6.centos.alt.x86_64 28/34
Installing : python27-python-babel-0.9.6-7.el6.centos.alt.noarch 29/34
Installing : python27-python-jinja2-2.6-10.el6.centos.alt.noarch 30/34
Installing : python27-python-sphinx-1.1.3-7.el6.centos.alt.noarch 31/34
Installing : python27-1.1-16.el6.centos.alt.x86_64 32/34
Installing : python33-1.1-12.el6.centos.alt.x86_64 33/34
Installing : python-setuptools-0.6.10-3.el6.noarch 34/34
Verifying : python27-python-werkzeug-0.8.3-5.el6.centos.alt.noarch 1/34
Verifying : python33-python-docutils-0.11-1.el6.centos.alt.noarch 2/34
Verifying : python27-python-docutils-0.11-1.el6.centos.alt.noarch 3/34
Verifying : python33-python-3.3.2-14.el6.centos.alt.x86_64 4/34
Verifying : python33-1.1-12.el6.centos.alt.x86_64 5/34
Verifying : python33-python-simplejson-3.2.0-1.el6.centos.alt.x86_64 6/34
Verifying : python27-python-sphinx-1.1.3-7.el6.centos.alt.noarch 7/34
Verifying : python27-python-setuptools-0.9.8-2.el6.centos.alt.noarch 8/34
Verifying : python27-python-2.7.5-10.el6.centos.alt.x86_64 9/34
Verifying : python33-python-libs-3.3.2-14.el6.centos.alt.x86_64 10/34
Verifying : python33-python-virtualenv-1.10.1-1.el6.centos.alt.noarc 11/34
Verifying : python27-python-jinja2-2.6-10.el6.centos.alt.noarch 12/34
Verifying : python33-python-setuptools-0.9.8-1.el6.centos.alt.noarch 13/34
Verifying : python27-python-pygments-1.5-2.el6.centos.alt.noarch 14/34
Verifying : python33-python-markupsafe-0.11-10.el6.centos.alt.noarch 15/34
Verifying : python27-python-virtualenv-1.10.1-2.el6.centos.alt.noarc 16/34
Verifying : python27-python-sqlalchemy-0.7.9-3.el6.centos.alt.x86_64 17/34
Verifying : python33-python-devel-3.3.2-14.el6.centos.alt.x86_64 18/34
Verifying : python27-runtime-1.1-16.el6.centos.alt.x86_64 19/34
Verifying : python27-python-markupsafe-0.11-11.el6.centos.alt.x86_64 20/34
Verifying : scl-utils-20120927-27.el6_6.x86_64 21/34
Verifying : python27-python-devel-2.7.5-10.el6.centos.alt.x86_64 22/34
Verifying : python-setuptools-0.6.10-3.el6.noarch 23/34
Verifying : python27-1.1-16.el6.centos.alt.x86_64 24/34
Verifying : python33-python-sqlalchemy-0.7.9-4.el6.centos.alt.noarch 25/34
Verifying : python33-python-sphinx-1.1.3-8.el6.centos.alt.noarch 26/34
Verifying : python27-python-libs-2.7.5-10.el6.centos.alt.x86_64 27/34
Verifying : python33-runtime-1.1-12.el6.centos.alt.x86_64 28/34
Verifying : python33-python-pygments-1.5-3.el6.centos.alt.noarch 29/34
Verifying : python33-python-nose-1.3.0-1.el6.centos.alt.noarch 30/34
Verifying : python27-python-nose-1.3.0-1.el6.centos.alt.noarch 31/34
Verifying : python27-python-simplejson-3.2.0-1.el6.centos.alt.x86_64 32/34
Verifying : python27-python-babel-0.9.6-7.el6.centos.alt.noarch 33/34
Verifying : python33-python-jinja2-2.6-11.el6.centos.alt.noarch 34/34
Installed:
python-setuptools.noarch 0:0.6.10-3.el6
python27.x86_64 0:1.1-16.el6.centos.alt
python33.x86_64 0:1.1-12.el6.centos.alt
Dependency Installed:
python27-python.x86_64 0:2.7.5-10.el6.centos.alt
python27-python-babel.noarch 0:0.9.6-7.el6.centos.alt
python27-python-devel.x86_64 0:2.7.5-10.el6.centos.alt
python27-python-docutils.noarch 0:0.11-1.el6.centos.alt
python27-python-jinja2.noarch 0:2.6-10.el6.centos.alt
python27-python-libs.x86_64 0:2.7.5-10.el6.centos.alt
python27-python-markupsafe.x86_64 0:0.11-11.el6.centos.alt
python27-python-nose.noarch 0:1.3.0-1.el6.centos.alt
python27-python-pygments.noarch 0:1.5-2.el6.centos.alt
python27-python-setuptools.noarch 0:0.9.8-2.el6.centos.alt
python27-python-simplejson.x86_64 0:3.2.0-1.el6.centos.alt
python27-python-sphinx.noarch 0:1.1.3-7.el6.centos.alt
python27-python-sqlalchemy.x86_64 0:0.7.9-3.el6.centos.alt
python27-python-virtualenv.noarch 0:1.10.1-2.el6.centos.alt
python27-python-werkzeug.noarch 0:0.8.3-5.el6.centos.alt
python27-runtime.x86_64 0:1.1-16.el6.centos.alt
python33-python.x86_64 0:3.3.2-14.el6.centos.alt
python33-python-devel.x86_64 0:3.3.2-14.el6.centos.alt
python33-python-docutils.noarch 0:0.11-1.el6.centos.alt
python33-python-jinja2.noarch 0:2.6-11.el6.centos.alt
python33-python-libs.x86_64 0:3.3.2-14.el6.centos.alt
python33-python-markupsafe.noarch 0:0.11-10.el6.centos.alt
python33-python-nose.noarch 0:1.3.0-1.el6.centos.alt
python33-python-pygments.noarch 0:1.5-3.el6.centos.alt
python33-python-setuptools.noarch 0:0.9.8-1.el6.centos.alt
python33-python-simplejson.x86_64 0:3.2.0-1.el6.centos.alt
python33-python-sphinx.noarch 0:1.1.3-8.el6.centos.alt
python33-python-sqlalchemy.noarch 0:0.7.9-4.el6.centos.alt
python33-python-virtualenv.noarch 0:1.10.1-1.el6.centos.alt
python33-runtime.x86_64 0:1.1-12.el6.centos.alt
scl-utils.x86_64 0:20120927-27.el6_6
Complete!
running install
running bdist_egg
running egg_info
creating pip.egg-info
writing requirements to pip.egg-info/requires.txt
writing pip.egg-info/PKG-INFO
writing top-level names to pip.egg-info/top_level.txt
writing dependency_links to pip.egg-info/dependency_links.txt
writing entry points to pip.egg-info/entry_points.txt
writing manifest file 'pip.egg-info/SOURCES.txt'
reading manifest file 'pip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
writing manifest file 'pip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib
creating build/lib/pip
copying pip/__init__.py -> build/lib/pip
copying pip/__main__.py -> build/lib/pip
copying pip/basecommand.py -> build/lib/pip
copying pip/baseparser.py -> build/lib/pip
copying pip/cmdoptions.py -> build/lib/pip
copying pip/download.py -> build/lib/pip
copying pip/exceptions.py -> build/lib/pip
copying pip/index.py -> build/lib/pip
copying pip/locations.py -> build/lib/pip
copying pip/pep425tags.py -> build/lib/pip
copying pip/status_codes.py -> build/lib/pip
copying pip/wheel.py -> build/lib/pip
creating build/lib/pip/_vendor
copying pip/_vendor/__init__.py -> build/lib/pip/_vendor
copying pip/_vendor/ipaddress.py -> build/lib/pip/_vendor
copying pip/_vendor/pyparsing.py -> build/lib/pip/_vendor
copying pip/_vendor/re-vendor.py -> build/lib/pip/_vendor
copying pip/_vendor/retrying.py -> build/lib/pip/_vendor
copying pip/_vendor/six.py -> build/lib/pip/_vendor
creating build/lib/pip/commands
copying pip/commands/__init__.py -> build/lib/pip/commands
copying pip/commands/completion.py -> build/lib/pip/commands
copying pip/commands/download.py -> build/lib/pip/commands
copying pip/commands/freeze.py -> build/lib/pip/commands
copying pip/commands/hash.py -> build/lib/pip/commands
copying pip/commands/help.py -> build/lib/pip/commands
copying pip/commands/install.py -> build/lib/pip/commands
copying pip/commands/list.py -> build/lib/pip/commands
copying pip/commands/search.py -> build/lib/pip/commands
copying pip/commands/show.py -> build/lib/pip/commands
copying pip/commands/uninstall.py -> build/lib/pip/commands
copying pip/commands/wheel.py -> build/lib/pip/commands
creating build/lib/pip/compat
copying pip/compat/__init__.py -> build/lib/pip/compat
copying pip/compat/dictconfig.py -> build/lib/pip/compat
creating build/lib/pip/models
copying pip/models/__init__.py -> build/lib/pip/models
copying pip/models/index.py -> build/lib/pip/models
creating build/lib/pip/operations
copying pip/operations/__init__.py -> build/lib/pip/operations
copying pip/operations/freeze.py -> build/lib/pip/operations
creating build/lib/pip/req
copying pip/req/__init__.py -> build/lib/pip/req
copying pip/req/req_file.py -> build/lib/pip/req
copying pip/req/req_install.py -> build/lib/pip/req
copying pip/req/req_set.py -> build/lib/pip/req
copying pip/req/req_uninstall.py -> build/lib/pip/req
creating build/lib/pip/utils
copying pip/utils/__init__.py -> build/lib/pip/utils
copying pip/utils/appdirs.py -> build/lib/pip/utils
copying pip/utils/build.py -> build/lib/pip/utils
copying pip/utils/deprecation.py -> build/lib/pip/utils
copying pip/utils/encoding.py -> build/lib/pip/utils
copying pip/utils/filesystem.py -> build/lib/pip/utils
copying pip/utils/hashes.py -> build/lib/pip/utils
copying pip/utils/logging.py -> build/lib/pip/utils
copying pip/utils/outdated.py -> build/lib/pip/utils
copying pip/utils/setuptools_build.py -> build/lib/pip/utils
copying pip/utils/ui.py -> build/lib/pip/utils
creating build/lib/pip/vcs
copying pip/vcs/__init__.py -> build/lib/pip/vcs
copying pip/vcs/bazaar.py -> build/lib/pip/vcs
copying pip/vcs/git.py -> build/lib/pip/vcs
copying pip/vcs/mercurial.py -> build/lib/pip/vcs
copying pip/vcs/subversion.py -> build/lib/pip/vcs
creating build/lib/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/__init__.py -> build/lib/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/markers.py -> build/lib/pip/_vendor/_markerlib
creating build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/__init__.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/_cmd.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/adapter.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/cache.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/compat.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/controller.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/filewrapper.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/heuristics.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/serialize.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/wrapper.py -> build/lib/pip/_vendor/cachecontrol
creating build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/__init__.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/ansi.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/ansitowin32.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/initialise.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/win32.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/winterm.py -> build/lib/pip/_vendor/colorama
creating build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/__init__.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/compat.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/database.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/index.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/locators.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/manifest.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/markers.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/metadata.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/resources.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/scripts.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/util.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/version.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/wheel.py -> build/lib/pip/_vendor/distlib
creating build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/__init__.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/constants.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/html5parser.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/ihatexml.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/inputstream.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/sanitizer.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/tokenizer.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/utils.py -> build/lib/pip/_vendor/html5lib
creating build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/__init__.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/linklockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/mkdirlockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/pidlockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/sqlitelockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/symlinklockfile.py -> build/lib/pip/_vendor/lockfile
creating build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/__about__.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/__init__.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/_compat.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/_structures.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/markers.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/requirements.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/specifiers.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/utils.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/version.py -> build/lib/pip/_vendor/packaging
creating build/lib/pip/_vendor/pkg_resources
copying pip/_vendor/pkg_resources/__init__.py -> build/lib/pip/_vendor/pkg_resources
creating build/lib/pip/_vendor/progress
copying pip/_vendor/progress/__init__.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/bar.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/counter.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/helpers.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/spinner.py -> build/lib/pip/_vendor/progress
creating build/lib/pip/_vendor/requests
copying pip/_vendor/requests/__init__.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/adapters.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/api.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/auth.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/certs.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/compat.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/cookies.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/exceptions.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/hooks.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/models.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/sessions.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/status_codes.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/structures.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/utils.py -> build/lib/pip/_vendor/requests
creating build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/__init__.py -> build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/file_cache.py -> build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/redis_cache.py -> build/lib/pip/_vendor/cachecontrol/caches
creating build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/__init__.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/misc.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/shutil.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/sysconfig.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/tarfile.py -> build/lib/pip/_vendor/distlib/_backport
creating build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/__init__.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/_base.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/lint.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/optionaltags.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/sanitizer.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/whitespace.py -> build/lib/pip/_vendor/html5lib/filters
creating build/lib/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/__init__.py -> build/lib/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/htmlserializer.py -> build/lib/pip/_vendor/html5lib/serializer
creating build/lib/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/__init__.py -> build/lib/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/sax.py -> build/lib/pip/_vendor/html5lib/treeadapters
creating build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/__init__.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/_base.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/dom.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/lib/pip/_vendor/html5lib/treebuilders
creating build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/__init__.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/_base.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/dom.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/etree.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/genshistream.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/pulldom.py -> build/lib/pip/_vendor/html5lib/treewalkers
creating build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/__init__.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/_base.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/datrie.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/py.py -> build/lib/pip/_vendor/html5lib/trie
creating build/lib/pip/_vendor/requests/packages
copying pip/_vendor/requests/packages/__init__.py -> build/lib/pip/_vendor/requests/packages
creating build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/__init__.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5freq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardetect.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardistribution.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/compat.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/constants.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/cp949prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escsm.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jisfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jpcntx.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/latin1prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcssm.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sjisprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/universaldetector.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/utf8prober.py -> build/lib/pip/_vendor/requests/packages/chardet
creating build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/_collections.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connection.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/exceptions.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/fields.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/filepost.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/request.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/response.py -> build/lib/pip/_vendor/requests/packages/urllib3
creating build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
creating build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/six.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
creating build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/connection.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/request.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/response.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/retry.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/url.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
creating build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/distlib/t32.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/t64.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/w32.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/w64.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/requests/cacert.pem -> build/lib/pip/_vendor/requests
copying pip/_vendor/distlib/_backport/sysconfig.cfg -> build/lib/pip/_vendor/distlib/_backport
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__init__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__main__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/basecommand.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/baseparser.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/cmdoptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/download.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/exceptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/index.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/locations.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/pep425tags.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/status_codes.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/wheel.py -> build/bdist.linux-x86_64/egg/pip
creating build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/ipaddress.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/pyparsing.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/re-vendor.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/retrying.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor
creating build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/_cmd.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/adapter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/controller.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/filewrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/heuristics.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/serialize.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/wrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/file_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/redis_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
creating build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansi.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansitowin32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/initialise.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/win32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/winterm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/database.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/index.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/locators.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/manifest.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/metadata.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/resources.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/scripts.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/util.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/wheel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/misc.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/shutil.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/tarfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.cfg -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/t32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/t64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/html5parser.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/ihatexml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/inputstream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/tokenizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/lint.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/optionaltags.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/whitespace.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/htmlserializer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/sax.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/genshistream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/pulldom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/datrie.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/py.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
creating build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/linklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/mkdirlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/pidlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/sqlitelockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/symlinklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
creating build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__about__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/requirements.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/specifiers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
creating build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
copying build/lib/pip/_vendor/pkg_resources/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
creating build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/bar.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/counter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/helpers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/spinner.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/adapters.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/api.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/auth.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/certs.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/cookies.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/hooks.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/models.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/sessions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/status_codes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
copying build/lib/pip/_vendor/requests/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardetect.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardistribution.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/cp949prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escsm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jisfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jpcntx.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/latin1prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcssm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sjisprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/universaldetector.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/utf8prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/_collections.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/fields.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/filepost.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/retry.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/url.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/cacert.pem -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/__init__.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/completion.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/download.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/freeze.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/hash.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/help.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/install.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/list.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/search.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/show.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/uninstall.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/wheel.py -> build/bdist.linux-x86_64/egg/pip/commands
creating build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/__init__.py -> build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/dictconfig.py -> build/bdist.linux-x86_64/egg/pip/compat
creating build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/__init__.py -> build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/index.py -> build/bdist.linux-x86_64/egg/pip/models
creating build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/__init__.py -> build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/freeze.py -> build/bdist.linux-x86_64/egg/pip/operations
creating build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/__init__.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_file.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_install.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_set.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_uninstall.py -> build/bdist.linux-x86_64/egg/pip/req
creating build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/__init__.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/appdirs.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/deprecation.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/encoding.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/filesystem.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/hashes.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/logging.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/outdated.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/setuptools_build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/ui.py -> build/bdist.linux-x86_64/egg/pip/utils
creating build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/__init__.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/bazaar.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/git.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/mercurial.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/subversion.py -> build/bdist.linux-x86_64/egg/pip/vcs
byte-compiling build/bdist.linux-x86_64/egg/pip/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/__main__.py to __main__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/basecommand.py to basecommand.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/baseparser.py to baseparser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/cmdoptions.py to cmdoptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/locations.py to locations.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/pep425tags.py to pep425tags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/ipaddress.py to ipaddress.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pyparsing.py to pyparsing.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/re-vendor.py to re-vendor.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/retrying.py to retrying.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/_cmd.py to _cmd.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/adapter.py to adapter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/cache.py to cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/controller.py to controller.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/filewrapper.py to filewrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/heuristics.py to heuristics.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/serialize.py to serialize.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/wrapper.py to wrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/file_cache.py to file_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/redis_cache.py to redis_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansi.py to ansi.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansitowin32.py to ansitowin32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/initialise.py to initialise.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/win32.py to win32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/winterm.py to winterm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/database.py to database.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/locators.py to locators.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/manifest.py to manifest.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/metadata.py to metadata.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/resources.py to resources.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/scripts.py to scripts.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/util.py to util.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/misc.py to misc.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/shutil.py to shutil.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/sysconfig.py to sysconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/tarfile.py to tarfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/html5parser.py to html5parser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/ihatexml.py to ihatexml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/inputstream.py to inputstream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/tokenizer.py to tokenizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py to alphabeticalattributes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/inject_meta_charset.py to inject_meta_charset.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/lint.py to lint.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/optionaltags.py to optionaltags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/whitespace.py to whitespace.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/htmlserializer.py to htmlserializer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/sax.py to sax.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py to etree_lxml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/genshistream.py to genshistream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/lxmletree.py to lxmletree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/pulldom.py to pulldom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/datrie.py to datrie.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/py.py to py.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/linklockfile.py to linklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/mkdirlockfile.py to mkdirlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/pidlockfile.py to pidlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/sqlitelockfile.py to sqlitelockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/symlinklockfile.py to symlinklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__about__.py to __about__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_compat.py to _compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_structures.py to _structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/requirements.py to requirements.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/specifiers.py to specifiers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/bar.py to bar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/counter.py to counter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/helpers.py to helpers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/spinner.py to spinner.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/adapters.py to adapters.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/api.py to api.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/auth.py to auth.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/certs.py to certs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/cookies.py to cookies.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/hooks.py to hooks.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/models.py to models.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/sessions.py to sessions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/structures.py to structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5freq.py to big5freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5prober.py to big5prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardetect.py to chardetect.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardistribution.py to chardistribution.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetgroupprober.py to charsetgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetprober.py to charsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/codingstatemachine.py to codingstatemachine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/cp949prober.py to cp949prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escprober.py to escprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escsm.py to escsm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/eucjpprober.py to eucjpprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrfreq.py to euckrfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrprober.py to euckrprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwfreq.py to euctwfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwprober.py to euctwprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312freq.py to gb2312freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312prober.py to gb2312prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/hebrewprober.py to hebrewprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jisfreq.py to jisfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jpcntx.py to jpcntx.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py to langbulgarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py to langcyrillicmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langgreekmodel.py to langgreekmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhebrewmodel.py to langhebrewmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhungarianmodel.py to langhungarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langthaimodel.py to langthaimodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/latin1prober.py to latin1prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcharsetprober.py to mbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py to mbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcssm.py to mbcssm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcharsetprober.py to sbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py to sbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sjisprober.py to sjisprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/universaldetector.py to universaldetector.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/utf8prober.py to utf8prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/_collections.py to _collections.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connectionpool.py to connectionpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/fields.py to fields.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/filepost.py to filepost.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/poolmanager.py to poolmanager.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/appengine.py to appengine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py to ntlmpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py to pyopenssl.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py to ordered_dict.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py to _implementation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/retry.py to retry.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py to ssl_.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/timeout.py to timeout.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/url.py to url.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/completion.py to completion.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/hash.py to hash.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/help.py to help.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/install.py to install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/list.py to list.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/search.py to search.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/show.py to show.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/uninstall.py to uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/dictconfig.py to dictconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_file.py to req_file.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_install.py to req_install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_set.py to req_set.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_uninstall.py to req_uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/appdirs.py to appdirs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/build.py to build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/deprecation.py to deprecation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/encoding.py to encoding.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/filesystem.py to filesystem.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/hashes.py to hashes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/logging.py to logging.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/outdated.py to outdated.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/setuptools_build.py to setuptools_build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/ui.py to ui.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/bazaar.py to bazaar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/git.py to git.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/mercurial.py to mercurial.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/subversion.py to subversion.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
creating dist
creating 'dist/pip-8.1.0.dev0-py2.6.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing pip-8.1.0.dev0-py2.6.egg
creating /usr/lib/python2.6/site-packages/pip-8.1.0.dev0-py2.6.egg
Extracting pip-8.1.0.dev0-py2.6.egg to /usr/lib/python2.6/site-packages
Adding pip 8.1.0.dev0 to easy-install.pth file
Installing pip script to /usr/bin
Installing pip2.6 script to /usr/bin
Installing pip2 script to /usr/bin
Installed /usr/lib/python2.6/site-packages/pip-8.1.0.dev0-py2.6.egg
Processing dependencies for pip==8.1.0.dev0
Finished processing dependencies for pip==8.1.0.dev0
running install
running bdist_egg
running egg_info
writing requirements to pip.egg-info/requires.txt
writing pip.egg-info/PKG-INFO
writing top-level names to pip.egg-info/top_level.txt
writing dependency_links to pip.egg-info/dependency_links.txt
writing entry points to pip.egg-info/entry_points.txt
reading manifest file 'pip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
writing manifest file 'pip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__init__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__main__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/basecommand.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/baseparser.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/cmdoptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/download.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/exceptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/index.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/locations.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/pep425tags.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/status_codes.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/wheel.py -> build/bdist.linux-x86_64/egg/pip
creating build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/ipaddress.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/pyparsing.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/re-vendor.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/retrying.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor
creating build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/_cmd.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/adapter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/controller.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/filewrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/heuristics.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/serialize.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/wrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/file_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/redis_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
creating build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansi.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansitowin32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/initialise.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/win32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/winterm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/database.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/index.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/locators.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/manifest.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/metadata.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/resources.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/scripts.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/util.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/wheel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/misc.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/shutil.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/tarfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.cfg -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/t32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/t64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/html5parser.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/ihatexml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/inputstream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/tokenizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/lint.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/optionaltags.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/whitespace.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/htmlserializer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/sax.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/genshistream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/pulldom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/datrie.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/py.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
creating build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/linklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/mkdirlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/pidlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/sqlitelockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/symlinklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
creating build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__about__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/requirements.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/specifiers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
creating build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
copying build/lib/pip/_vendor/pkg_resources/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
creating build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/bar.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/counter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/helpers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/spinner.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/adapters.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/api.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/auth.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/certs.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/cookies.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/hooks.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/models.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/sessions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/status_codes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
copying build/lib/pip/_vendor/requests/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardetect.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardistribution.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/cp949prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escsm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jisfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jpcntx.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/latin1prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcssm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sjisprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/universaldetector.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/utf8prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/_collections.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/fields.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/filepost.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/retry.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/url.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/cacert.pem -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/__init__.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/completion.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/download.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/freeze.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/hash.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/help.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/install.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/list.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/search.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/show.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/uninstall.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/wheel.py -> build/bdist.linux-x86_64/egg/pip/commands
creating build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/__init__.py -> build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/dictconfig.py -> build/bdist.linux-x86_64/egg/pip/compat
creating build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/__init__.py -> build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/index.py -> build/bdist.linux-x86_64/egg/pip/models
creating build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/__init__.py -> build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/freeze.py -> build/bdist.linux-x86_64/egg/pip/operations
creating build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/__init__.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_file.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_install.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_set.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_uninstall.py -> build/bdist.linux-x86_64/egg/pip/req
creating build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/__init__.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/appdirs.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/deprecation.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/encoding.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/filesystem.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/hashes.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/logging.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/outdated.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/setuptools_build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/ui.py -> build/bdist.linux-x86_64/egg/pip/utils
creating build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/__init__.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/bazaar.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/git.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/mercurial.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/subversion.py -> build/bdist.linux-x86_64/egg/pip/vcs
byte-compiling build/bdist.linux-x86_64/egg/pip/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/__main__.py to __main__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/basecommand.py to basecommand.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/baseparser.py to baseparser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/cmdoptions.py to cmdoptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/locations.py to locations.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/pep425tags.py to pep425tags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/ipaddress.py to ipaddress.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pyparsing.py to pyparsing.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/re-vendor.py to re-vendor.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/retrying.py to retrying.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/_cmd.py to _cmd.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/adapter.py to adapter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/cache.py to cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/controller.py to controller.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/filewrapper.py to filewrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/heuristics.py to heuristics.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/serialize.py to serialize.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/wrapper.py to wrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/file_cache.py to file_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/redis_cache.py to redis_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansi.py to ansi.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansitowin32.py to ansitowin32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/initialise.py to initialise.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/win32.py to win32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/winterm.py to winterm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/database.py to database.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/locators.py to locators.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/manifest.py to manifest.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/metadata.py to metadata.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/resources.py to resources.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/scripts.py to scripts.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/util.py to util.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/misc.py to misc.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/shutil.py to shutil.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/sysconfig.py to sysconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/tarfile.py to tarfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/html5parser.py to html5parser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/ihatexml.py to ihatexml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/inputstream.py to inputstream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/tokenizer.py to tokenizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py to alphabeticalattributes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/inject_meta_charset.py to inject_meta_charset.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/lint.py to lint.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/optionaltags.py to optionaltags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/whitespace.py to whitespace.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/htmlserializer.py to htmlserializer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/sax.py to sax.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py to etree_lxml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/genshistream.py to genshistream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/lxmletree.py to lxmletree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/pulldom.py to pulldom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/datrie.py to datrie.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/py.py to py.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/linklockfile.py to linklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/mkdirlockfile.py to mkdirlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/pidlockfile.py to pidlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/sqlitelockfile.py to sqlitelockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/symlinklockfile.py to symlinklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__about__.py to __about__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_compat.py to _compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_structures.py to _structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/requirements.py to requirements.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/specifiers.py to specifiers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/bar.py to bar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/counter.py to counter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/helpers.py to helpers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/spinner.py to spinner.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/adapters.py to adapters.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/api.py to api.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/auth.py to auth.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/certs.py to certs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/cookies.py to cookies.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/hooks.py to hooks.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/models.py to models.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/sessions.py to sessions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/structures.py to structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5freq.py to big5freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5prober.py to big5prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardetect.py to chardetect.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardistribution.py to chardistribution.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetgroupprober.py to charsetgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetprober.py to charsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/codingstatemachine.py to codingstatemachine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/cp949prober.py to cp949prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escprober.py to escprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escsm.py to escsm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/eucjpprober.py to eucjpprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrfreq.py to euckrfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrprober.py to euckrprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwfreq.py to euctwfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwprober.py to euctwprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312freq.py to gb2312freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312prober.py to gb2312prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/hebrewprober.py to hebrewprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jisfreq.py to jisfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jpcntx.py to jpcntx.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py to langbulgarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py to langcyrillicmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langgreekmodel.py to langgreekmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhebrewmodel.py to langhebrewmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhungarianmodel.py to langhungarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langthaimodel.py to langthaimodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/latin1prober.py to latin1prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcharsetprober.py to mbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py to mbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcssm.py to mbcssm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcharsetprober.py to sbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py to sbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sjisprober.py to sjisprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/universaldetector.py to universaldetector.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/utf8prober.py to utf8prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/_collections.py to _collections.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connectionpool.py to connectionpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/fields.py to fields.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/filepost.py to filepost.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/poolmanager.py to poolmanager.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/appengine.py to appengine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py to ntlmpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py to pyopenssl.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py to ordered_dict.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py to _implementation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/retry.py to retry.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py to ssl_.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/timeout.py to timeout.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/url.py to url.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/completion.py to completion.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/hash.py to hash.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/help.py to help.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/install.py to install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/list.py to list.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/search.py to search.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/show.py to show.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/uninstall.py to uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/dictconfig.py to dictconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_file.py to req_file.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_install.py to req_install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_set.py to req_set.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_uninstall.py to req_uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/appdirs.py to appdirs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/build.py to build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/deprecation.py to deprecation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/encoding.py to encoding.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/filesystem.py to filesystem.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/hashes.py to hashes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/logging.py to logging.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/outdated.py to outdated.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/setuptools_build.py to setuptools_build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/ui.py to ui.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/bazaar.py to bazaar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/git.py to git.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/mercurial.py to mercurial.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/subversion.py to subversion.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
creating 'dist/pip-8.1.0.dev0-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing pip-8.1.0.dev0-py2.7.egg
creating /opt/rh/python27/root/usr/lib/python2.7/site-packages/pip-8.1.0.dev0-py2.7.egg
Extracting pip-8.1.0.dev0-py2.7.egg to /opt/rh/python27/root/usr/lib/python2.7/site-packages
Adding pip 8.1.0.dev0 to easy-install.pth file
Installing pip script to /opt/rh/python27/root/usr/bin
Installing pip2.7 script to /opt/rh/python27/root/usr/bin
Installing pip2 script to /opt/rh/python27/root/usr/bin
Installed /opt/rh/python27/root/usr/lib/python2.7/site-packages/pip-8.1.0.dev0-py2.7.egg
Processing dependencies for pip==8.1.0.dev0
Finished processing dependencies for pip==8.1.0.dev0
running install
running bdist_egg
running egg_info
writing requirements to pip.egg-info/requires.txt
writing dependency_links to pip.egg-info/dependency_links.txt
writing pip.egg-info/PKG-INFO
writing entry points to pip.egg-info/entry_points.txt
writing top-level names to pip.egg-info/top_level.txt
reading manifest file 'pip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
writing manifest file 'pip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__init__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__main__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/basecommand.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/baseparser.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/cmdoptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/download.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/exceptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/index.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/locations.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/pep425tags.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/status_codes.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/wheel.py -> build/bdist.linux-x86_64/egg/pip
creating build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/ipaddress.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/pyparsing.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/re-vendor.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/retrying.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor
creating build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/_cmd.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/adapter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/controller.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/filewrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/heuristics.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/serialize.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/wrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/file_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/redis_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
creating build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansi.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansitowin32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/initialise.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/win32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/winterm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/database.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/index.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/locators.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/manifest.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/metadata.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/resources.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/scripts.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/util.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/wheel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/misc.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/shutil.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/tarfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.cfg -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/t32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/t64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/html5parser.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/ihatexml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/inputstream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/tokenizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/lint.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/optionaltags.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/whitespace.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/htmlserializer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/sax.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/genshistream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/pulldom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/datrie.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/py.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
creating build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/linklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/mkdirlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/pidlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/sqlitelockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/symlinklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
creating build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__about__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/requirements.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/specifiers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
creating build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
copying build/lib/pip/_vendor/pkg_resources/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
creating build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/bar.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/counter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/helpers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/spinner.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/adapters.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/api.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/auth.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/certs.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/cookies.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/hooks.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/models.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/sessions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/status_codes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
copying build/lib/pip/_vendor/requests/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardetect.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardistribution.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/cp949prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escsm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jisfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jpcntx.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/latin1prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcssm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sjisprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/universaldetector.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/utf8prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/_collections.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/fields.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/filepost.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/retry.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/url.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/cacert.pem -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/__init__.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/completion.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/download.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/freeze.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/hash.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/help.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/install.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/list.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/search.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/show.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/uninstall.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/wheel.py -> build/bdist.linux-x86_64/egg/pip/commands
creating build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/__init__.py -> build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/dictconfig.py -> build/bdist.linux-x86_64/egg/pip/compat
creating build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/__init__.py -> build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/index.py -> build/bdist.linux-x86_64/egg/pip/models
creating build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/__init__.py -> build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/freeze.py -> build/bdist.linux-x86_64/egg/pip/operations
creating build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/__init__.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_file.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_install.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_set.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_uninstall.py -> build/bdist.linux-x86_64/egg/pip/req
creating build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/__init__.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/appdirs.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/deprecation.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/encoding.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/filesystem.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/hashes.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/logging.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/outdated.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/setuptools_build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/ui.py -> build/bdist.linux-x86_64/egg/pip/utils
creating build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/__init__.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/bazaar.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/git.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/mercurial.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/subversion.py -> build/bdist.linux-x86_64/egg/pip/vcs
byte-compiling build/bdist.linux-x86_64/egg/pip/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/__main__.py to __main__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/basecommand.py to basecommand.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/baseparser.py to baseparser.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/cmdoptions.py to cmdoptions.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/download.py to download.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/exceptions.py to exceptions.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/index.py to index.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/locations.py to locations.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/pep425tags.py to pep425tags.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/status_codes.py to status_codes.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/wheel.py to wheel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/ipaddress.py to ipaddress.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pyparsing.py to pyparsing.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/re-vendor.py to re-vendor.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/retrying.py to retrying.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/six.py to six.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/markers.py to markers.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/_cmd.py to _cmd.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/adapter.py to adapter.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/cache.py to cache.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/compat.py to compat.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/controller.py to controller.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/filewrapper.py to filewrapper.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/heuristics.py to heuristics.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/serialize.py to serialize.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/wrapper.py to wrapper.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/file_cache.py to file_cache.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/redis_cache.py to redis_cache.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansi.py to ansi.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansitowin32.py to ansitowin32.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/initialise.py to initialise.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/win32.py to win32.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/winterm.py to winterm.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/compat.py to compat.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/database.py to database.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/index.py to index.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/locators.py to locators.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/manifest.py to manifest.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/markers.py to markers.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/metadata.py to metadata.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/resources.py to resources.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/scripts.py to scripts.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/util.py to util.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/version.py to version.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/wheel.py to wheel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/misc.py to misc.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/shutil.py to shutil.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/sysconfig.py to sysconfig.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/tarfile.py to tarfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/constants.py to constants.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/html5parser.py to html5parser.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/ihatexml.py to ihatexml.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/inputstream.py to inputstream.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/sanitizer.py to sanitizer.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/tokenizer.py to tokenizer.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/utils.py to utils.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/_base.py to _base.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py to alphabeticalattributes.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/inject_meta_charset.py to inject_meta_charset.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/lint.py to lint.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/optionaltags.py to optionaltags.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/sanitizer.py to sanitizer.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/whitespace.py to whitespace.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/htmlserializer.py to htmlserializer.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/sax.py to sax.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/_base.py to _base.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/dom.py to dom.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree.py to etree.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py to etree_lxml.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/_base.py to _base.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/dom.py to dom.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/etree.py to etree.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/genshistream.py to genshistream.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/lxmletree.py to lxmletree.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/pulldom.py to pulldom.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/_base.py to _base.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/datrie.py to datrie.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/py.py to py.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/linklockfile.py to linklockfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/mkdirlockfile.py to mkdirlockfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/pidlockfile.py to pidlockfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/sqlitelockfile.py to sqlitelockfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/symlinklockfile.py to symlinklockfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__about__.py to __about__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_compat.py to _compat.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_structures.py to _structures.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/markers.py to markers.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/requirements.py to requirements.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/specifiers.py to specifiers.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/utils.py to utils.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/version.py to version.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/bar.py to bar.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/counter.py to counter.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/helpers.py to helpers.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/spinner.py to spinner.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/adapters.py to adapters.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/api.py to api.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/auth.py to auth.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/certs.py to certs.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/compat.py to compat.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/cookies.py to cookies.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/exceptions.py to exceptions.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/hooks.py to hooks.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/models.py to models.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/sessions.py to sessions.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/status_codes.py to status_codes.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/structures.py to structures.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/utils.py to utils.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5freq.py to big5freq.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5prober.py to big5prober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardetect.py to chardetect.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardistribution.py to chardistribution.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetgroupprober.py to charsetgroupprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetprober.py to charsetprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/codingstatemachine.py to codingstatemachine.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/compat.py to compat.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/constants.py to constants.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/cp949prober.py to cp949prober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escprober.py to escprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escsm.py to escsm.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/eucjpprober.py to eucjpprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrfreq.py to euckrfreq.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrprober.py to euckrprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwfreq.py to euctwfreq.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwprober.py to euctwprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312freq.py to gb2312freq.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312prober.py to gb2312prober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/hebrewprober.py to hebrewprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jisfreq.py to jisfreq.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jpcntx.py to jpcntx.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py to langbulgarianmodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py to langcyrillicmodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langgreekmodel.py to langgreekmodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhebrewmodel.py to langhebrewmodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhungarianmodel.py to langhungarianmodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langthaimodel.py to langthaimodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/latin1prober.py to latin1prober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcharsetprober.py to mbcharsetprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py to mbcsgroupprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcssm.py to mbcssm.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcharsetprober.py to sbcharsetprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py to sbcsgroupprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sjisprober.py to sjisprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/universaldetector.py to universaldetector.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/utf8prober.py to utf8prober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/_collections.py to _collections.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connection.py to connection.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connectionpool.py to connectionpool.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/exceptions.py to exceptions.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/fields.py to fields.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/filepost.py to filepost.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/poolmanager.py to poolmanager.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/request.py to request.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/response.py to response.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/appengine.py to appengine.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py to ntlmpool.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py to pyopenssl.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py to ordered_dict.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/six.py to six.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py to _implementation.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/connection.py to connection.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/request.py to request.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/response.py to response.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/retry.py to retry.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py to ssl_.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/timeout.py to timeout.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/url.py to url.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/completion.py to completion.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/download.py to download.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/freeze.py to freeze.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/hash.py to hash.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/help.py to help.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/install.py to install.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/list.py to list.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/search.py to search.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/show.py to show.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/uninstall.py to uninstall.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/wheel.py to wheel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/dictconfig.py to dictconfig.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/index.py to index.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/freeze.py to freeze.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_file.py to req_file.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_install.py to req_install.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_set.py to req_set.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_uninstall.py to req_uninstall.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/appdirs.py to appdirs.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/build.py to build.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/deprecation.py to deprecation.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/encoding.py to encoding.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/filesystem.py to filesystem.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/hashes.py to hashes.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/logging.py to logging.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/outdated.py to outdated.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/setuptools_build.py to setuptools_build.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/ui.py to ui.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/bazaar.py to bazaar.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/git.py to git.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/mercurial.py to mercurial.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/subversion.py to subversion.cpython-33.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
creating 'dist/pip-8.1.0.dev0-py3.3.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing pip-8.1.0.dev0-py3.3.egg
creating /opt/rh/python33/root/usr/lib/python3.3/site-packages/pip-8.1.0.dev0-py3.3.egg
Extracting pip-8.1.0.dev0-py3.3.egg to /opt/rh/python33/root/usr/lib/python3.3/site-packages
Adding pip 8.1.0.dev0 to easy-install.pth file
Installing pip3 script to /opt/rh/python33/root/usr/bin
Installing pip3.3 script to /opt/rh/python33/root/usr/bin
Installing pip script to /opt/rh/python33/root/usr/bin
Installed /opt/rh/python33/root/usr/lib/python3.3/site-packages/pip-8.1.0.dev0-py3.3.egg
Processing dependencies for pip==8.1.0.dev0
Finished processing dependencies for pip==8.1.0.dev0
DEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6
Ignoring indexes: https://pypi.python.org/simple
Collecting psycopg2
1 location(s) to search for versions of psycopg2:
* https://depot.galaxyproject.org/nate/wheelhouse
Skipping link https://depot.galaxyproject.org/nate/wheelhouse (from -f); not a file
Getting page https://depot.galaxyproject.org/nate/wheelhouse
Looking up "https://depot.galaxyproject.org/nate/wheelhouse" in the cache
No cache entry available
Starting new HTTPS connection (1): depot.galaxyproject.org
/usr/lib/python2.6/site-packages/pip-8.1.0.dev0-py2.6.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:315: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning.
SNIMissingWarning
/usr/lib/python2.6/site-packages/pip-8.1.0.dev0-py2.6.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:120: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
"GET /nate/wheelhouse HTTP/1.1" 301 184
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse"
Caching permanant redirect
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/" in the cache
No cache entry available
"GET /nate/wheelhouse/ HTTP/1.1" 200 None
Analyzing links from page https://depot.galaxyproject.org/nate/wheelhouse/
Skipping link https://depot.galaxyproject.org/nate/ (from https://depot.galaxyproject.org/nate/wheelhouse/); not a file
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Found link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/), version: 2.6.1
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp35-cp35m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Using version 2.6.1 (newest of versions: 2.6.1)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl" in the cache
No cache entry available
"GET /nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl HTTP/1.1" 200 1980091
Downloading https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl (2.0MB)
Downloading from URL https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/)
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl"
Caching due to etag
Installing collected packages: psycopg2
Successfully installed psycopg2-2.6.1
Cleaning up...
#### psycopg2 test on centos:6 2.6.6
INSERT 0 1
id was: 7
SELECT 1
SELECT returned: (7, 'centos:6')
#### end psycopg2 test on centos:6 2.6.6
Ignoring indexes: https://pypi.python.org/simple
Collecting psycopg2
1 location(s) to search for versions of psycopg2:
* https://depot.galaxyproject.org/nate/wheelhouse
Skipping link https://depot.galaxyproject.org/nate/wheelhouse (from -f); not a file
Getting page https://depot.galaxyproject.org/nate/wheelhouse
Looking up "https://depot.galaxyproject.org/nate/wheelhouse" in the cache
Returning cached "301 Moved Permanently" response (ignoring date and etag information)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/" in the cache
No cache entry available
Starting new HTTPS connection (1): depot.galaxyproject.org
/opt/rh/python27/root/usr/lib/python2.7/site-packages/pip-8.1.0.dev0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:315: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning.
SNIMissingWarning
/opt/rh/python27/root/usr/lib/python2.7/site-packages/pip-8.1.0.dev0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:120: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
"GET /nate/wheelhouse/ HTTP/1.1" 200 None
Analyzing links from page https://depot.galaxyproject.org/nate/wheelhouse/
Skipping link https://depot.galaxyproject.org/nate/ (from https://depot.galaxyproject.org/nate/wheelhouse/); not a file
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Found link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/), version: 2.6.1
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp35-cp35m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Using version 2.6.1 (newest of versions: 2.6.1)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl" in the cache
No cache entry available
"GET /nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl HTTP/1.1" 200 1981638
Downloading https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (2.0MB)
Downloading from URL https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/)
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl"
Caching due to etag
Installing collected packages: psycopg2
Successfully installed psycopg2-2.6.1
Cleaning up...
#### psycopg2 test on centos:6 2.7.5
INSERT 0 1
id was: 8
SELECT 1
SELECT returned: (8, 'centos:6')
#### end psycopg2 test on centos:6 2.7.5
Ignoring indexes: https://pypi.python.org/simple
Collecting psycopg2
1 location(s) to search for versions of psycopg2:
* https://depot.galaxyproject.org/nate/wheelhouse
Skipping link https://depot.galaxyproject.org/nate/wheelhouse (from -f); not a file
Getting page https://depot.galaxyproject.org/nate/wheelhouse
Looking up "https://depot.galaxyproject.org/nate/wheelhouse" in the cache
Returning cached "301 Moved Permanently" response (ignoring date and etag information)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/" in the cache
No cache entry available
Starting new HTTPS connection (1): depot.galaxyproject.org
"GET /nate/wheelhouse/ HTTP/1.1" 200 None
Analyzing links from page https://depot.galaxyproject.org/nate/wheelhouse/
Skipping link https://depot.galaxyproject.org/nate/ (from https://depot.galaxyproject.org/nate/wheelhouse/); not a file
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp26-cp26mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Found link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/), version: 2.6.1
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp34-cp34m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Skipping link https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp35-cp35m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/); it is not compatible with this Python
Using version 2.6.1 (newest of versions: 2.6.1)
Looking up "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl" in the cache
No cache entry available
"GET /nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl HTTP/1.1" 200 1975603
Downloading https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl (2.0MB)
Downloading from URL https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl (from https://depot.galaxyproject.org/nate/wheelhouse/)
Updating cache with response from "https://depot.galaxyproject.org/nate/wheelhouse/psycopg2-2.6.1-cp33-cp33m-manylinux1_x86_64.whl"
Caching due to etag
Installing collected packages: psycopg2
Successfully installed psycopg2-2.6.1
Cleaning up...
#### psycopg2 test on centos:6 3.3.2
INSERT 0 1
id was: 9
SELECT 1
SELECT returned: (9, 'centos:6')
#### end psycopg2 test on centos:6 3.3.2
git clone pip-clean pip && docker run --rm -v /home/nate/psycopg_test:/host/ --entrypoint=/bin/sh centos:7 -c "export IMAGE=centos:7 && rpm -U https://www.softwarecollections.org/en/scls/rhscl/python33/epel-7-x86_64/download/rhscl-python33-epel-7-x86_64.noarch.rpm && yum -y install python-setuptools python33 && . /opt/rh/python33/enable && cd /host/pip && python2.7 setup.py install && cd /host/pip && python3 setup.py install && cd /host && rm -rf pip && pip2.7 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python2.7 psycopg_test.py | tee -a psycopg_test.log && pip3 install -vvv --only-binary :all: --no-index -f https://depot.galaxyproject.org/nate/wheelhouse psycopg2 && python3 psycopg_test.py | tee -a psycopg_test.log"
Cloning into 'pip'...
done.
Loaded plugins: fastestmirror, ovl
Determining fastest mirrors
* base: mirror.raystedman.net
* extras: mirror.tzulo.com
* updates: centos.chi.host-engine.com
Resolving Dependencies
--> Running transaction check
---> Package python-setuptools.noarch 0:0.9.8-4.el7 will be installed
--> Processing Dependency: python-backports-ssl_match_hostname for package: python-setuptools-0.9.8-4.el7.noarch
---> Package python33.x86_64 0:1.1-13.el7.centos will be installed
--> Processing Dependency: python33-python for package: python33-1.1-13.el7.centos.x86_64
--> Processing Dependency: python33-python-jinja2 for package: python33-1.1-13.el7.centos.x86_64
--> Processing Dependency: python33-python-nose for package: python33-1.1-13.el7.centos.x86_64
--> Processing Dependency: python33-python-simplejson for package: python33-1.1-13.el7.centos.x86_64
--> Processing Dependency: python33-python-setuptools for package: python33-1.1-13.el7.centos.x86_64
--> Processing Dependency: python33-python-sphinx for package: python33-1.1-13.el7.centos.x86_64
--> Processing Dependency: python33-python-sqlalchemy for package: python33-1.1-13.el7.centos.x86_64
--> Processing Dependency: python33-python-virtualenv for package: python33-1.1-13.el7.centos.x86_64
--> Running transaction check
---> Package python-backports-ssl_match_hostname.noarch 0:3.4.0.2-4.el7 will be installed
--> Processing Dependency: python-backports for package: python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch
---> Package python33-python.x86_64 0:3.3.2-12.el7.centos will be installed
--> Processing Dependency: python33-python-libs(x86-64) = 3.3.2-12.el7.centos for package: python33-python-3.3.2-12.el7.centos.x86_64
--> Processing Dependency: python33-runtime for package: python33-python-3.3.2-12.el7.centos.x86_64
--> Processing Dependency: libpython3.3m.so.1.0()(64bit) for package: python33-python-3.3.2-12.el7.centos.x86_64
---> Package python33-python-jinja2.noarch 0:2.6-12.el7.centos will be installed
--> Processing Dependency: python33-python-markupsafe for package: python33-python-jinja2-2.6-12.el7.centos.noarch
---> Package python33-python-nose.noarch 0:1.3.0-3.el7.centos will be installed
---> Package python33-python-setuptools.noarch 0:0.9.8-3.el7.centos will be installed
---> Package python33-python-simplejson.x86_64 0:3.2.0-2.el7.centos will be installed
---> Package python33-python-sphinx.noarch 0:1.1.3-8.el7.centos will be installed
--> Processing Dependency: python33-python-docutils for package: python33-python-sphinx-1.1.3-8.el7.centos.noarch
--> Processing Dependency: python33-python-pygments for package: python33-python-sphinx-1.1.3-8.el7.centos.noarch
---> Package python33-python-sqlalchemy.noarch 0:0.7.9-5.el7.centos will be installed
---> Package python33-python-virtualenv.noarch 0:1.10.1-2.el7.centos will be installed
--> Processing Dependency: python33-python-devel for package: python33-python-virtualenv-1.10.1-2.el7.centos.noarch
--> Running transaction check
---> Package python-backports.x86_64 0:1.0-8.el7 will be installed
---> Package python33-python-devel.x86_64 0:3.3.2-12.el7.centos will be installed
---> Package python33-python-docutils.noarch 0:0.11-1.el7.centos will be installed
---> Package python33-python-libs.x86_64 0:3.3.2-12.el7.centos will be installed
---> Package python33-python-markupsafe.noarch 0:0.11-10.el7.centos will be installed
---> Package python33-python-pygments.noarch 0:1.5-3.el7.centos will be installed
---> Package python33-runtime.x86_64 0:1.1-13.el7.centos will be installed
--> Processing Dependency: scl-utils for package: python33-runtime-1.1-13.el7.centos.x86_64
--> Running transaction check
---> Package scl-utils.x86_64 0:20130529-17.el7_1 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
python-setuptools
noarch 0.9.8-4.el7 base 396 k
python33 x86_64 1.1-13.el7.centos rhscl-python33-epel-7-x86_64 3.9 k
Installing for dependencies:
python-backports x86_64 1.0-8.el7 base 5.8 k
python-backports-ssl_match_hostname
noarch 3.4.0.2-4.el7 base 12 k
python33-python x86_64 3.3.2-12.el7.centos rhscl-python33-epel-7-x86_64 43 k
python33-python-devel
x86_64 3.3.2-12.el7.centos rhscl-python33-epel-7-x86_64 173 k
python33-python-docutils
noarch 0.11-1.el7.centos rhscl-python33-epel-7-x86_64 1.6 M
python33-python-jinja2
noarch 2.6-12.el7.centos rhscl-python33-epel-7-x86_64 522 k
python33-python-libs
x86_64 3.3.2-12.el7.centos rhscl-python33-epel-7-x86_64 6.2 M
python33-python-markupsafe
noarch 0.11-10.el7.centos rhscl-python33-epel-7-x86_64 21 k
python33-python-nose
noarch 1.3.0-3.el7.centos rhscl-python33-epel-7-x86_64 282 k
python33-python-pygments
noarch 1.5-3.el7.centos rhscl-python33-epel-7-x86_64 780 k
python33-python-setuptools
noarch 0.9.8-3.el7.centos rhscl-python33-epel-7-x86_64 409 k
python33-python-simplejson
x86_64 3.2.0-2.el7.centos rhscl-python33-epel-7-x86_64 173 k
python33-python-sphinx
noarch 1.1.3-8.el7.centos rhscl-python33-epel-7-x86_64 1.1 M
python33-python-sqlalchemy
noarch 0.7.9-5.el7.centos rhscl-python33-epel-7-x86_64 2.1 M
python33-python-virtualenv
noarch 1.10.1-2.el7.centos rhscl-python33-epel-7-x86_64 1.4 M
python33-runtime x86_64 1.1-13.el7.centos rhscl-python33-epel-7-x86_64 1.1 M
scl-utils x86_64 20130529-17.el7_1 base 24 k
Transaction Summary
================================================================================
Install 2 Packages (+17 Dependent packages)
Total download size: 16 M
Installed size: 67 M
Downloading packages:
warning: /var/cache/yum/x86_64/7/base/packages/python-backports-1.0-8.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Public key for python-backports-1.0-8.el7.x86_64.rpm is not installed
--------------------------------------------------------------------------------
Total 3.9 MB/s | 16 MB 00:04
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Importing GPG key 0xF4A80EB5:
Userid : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>"
Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
Package : centos-release-7-2.1511.el7.centos.2.10.x86_64 (@CentOS)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Warning: RPMDB altered outside of yum.
Installing : python-backports-1.0-8.el7.x86_64 1/19
Installing : python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch 2/19
Installing : scl-utils-20130529-17.el7_1.x86_64 3/19
Installing : python33-runtime-1.1-13.el7.centos.x86_64 4/19
Installing : python33-python-3.3.2-12.el7.centos.x86_64 5/19
Installing : python33-python-libs-3.3.2-12.el7.centos.x86_64 6/19
Installing : python33-python-setuptools-0.9.8-3.el7.centos.noarch 7/19
Installing : python33-python-nose-1.3.0-3.el7.centos.noarch 8/19
Installing : python33-python-pygments-1.5-3.el7.centos.noarch 9/19
Installing : python33-python-simplejson-3.2.0-2.el7.centos.x86_64 10/19
Installing : python33-python-devel-3.3.2-12.el7.centos.x86_64 11/19
Installing : python33-python-virtualenv-1.10.1-2.el7.centos.noarch 12/19
Installing : python33-python-markupsafe-0.11-10.el7.centos.noarch 13/19
Installing : python33-python-jinja2-2.6-12.el7.centos.noarch 14/19
Installing : python33-python-docutils-0.11-1.el7.centos.noarch 15/19
Installing : python33-python-sphinx-1.1.3-8.el7.centos.noarch 16/19
Installing : python33-python-sqlalchemy-0.7.9-5.el7.centos.noarch 17/19
Installing : python33-1.1-13.el7.centos.x86_64 18/19
Installing : python-setuptools-0.9.8-4.el7.noarch 19/19
Verifying : python33-runtime-1.1-13.el7.centos.x86_64 1/19
Verifying : python33-python-nose-1.3.0-3.el7.centos.noarch 2/19
Verifying : python33-python-sphinx-1.1.3-8.el7.centos.noarch 3/19
Verifying : python-setuptools-0.9.8-4.el7.noarch 4/19
Verifying : python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch 5/19
Verifying : python33-python-3.3.2-12.el7.centos.x86_64 6/19
Verifying : scl-utils-20130529-17.el7_1.x86_64 7/19
Verifying : python33-python-markupsafe-0.11-10.el7.centos.noarch 8/19
Verifying : python-backports-1.0-8.el7.x86_64 9/19
Verifying : python33-python-docutils-0.11-1.el7.centos.noarch 10/19
Verifying : python33-python-pygments-1.5-3.el7.centos.noarch 11/19
Verifying : python33-python-virtualenv-1.10.1-2.el7.centos.noarch 12/19
Verifying : python33-python-jinja2-2.6-12.el7.centos.noarch 13/19
Verifying : python33-python-simplejson-3.2.0-2.el7.centos.x86_64 14/19
Verifying : python33-python-devel-3.3.2-12.el7.centos.x86_64 15/19
Verifying : python33-1.1-13.el7.centos.x86_64 16/19
Verifying : python33-python-setuptools-0.9.8-3.el7.centos.noarch 17/19
Verifying : python33-python-sqlalchemy-0.7.9-5.el7.centos.noarch 18/19
Verifying : python33-python-libs-3.3.2-12.el7.centos.x86_64 19/19
Installed:
python-setuptools.noarch 0:0.9.8-4.el7 python33.x86_64 0:1.1-13.el7.centos
Dependency Installed:
python-backports.x86_64 0:1.0-8.el7
python-backports-ssl_match_hostname.noarch 0:3.4.0.2-4.el7
python33-python.x86_64 0:3.3.2-12.el7.centos
python33-python-devel.x86_64 0:3.3.2-12.el7.centos
python33-python-docutils.noarch 0:0.11-1.el7.centos
python33-python-jinja2.noarch 0:2.6-12.el7.centos
python33-python-libs.x86_64 0:3.3.2-12.el7.centos
python33-python-markupsafe.noarch 0:0.11-10.el7.centos
python33-python-nose.noarch 0:1.3.0-3.el7.centos
python33-python-pygments.noarch 0:1.5-3.el7.centos
python33-python-setuptools.noarch 0:0.9.8-3.el7.centos
python33-python-simplejson.x86_64 0:3.2.0-2.el7.centos
python33-python-sphinx.noarch 0:1.1.3-8.el7.centos
python33-python-sqlalchemy.noarch 0:0.7.9-5.el7.centos
python33-python-virtualenv.noarch 0:1.10.1-2.el7.centos
python33-runtime.x86_64 0:1.1-13.el7.centos
scl-utils.x86_64 0:20130529-17.el7_1
Complete!
running install
running bdist_egg
running egg_info
creating pip.egg-info
writing requirements to pip.egg-info/requires.txt
writing pip.egg-info/PKG-INFO
writing top-level names to pip.egg-info/top_level.txt
writing dependency_links to pip.egg-info/dependency_links.txt
writing entry points to pip.egg-info/entry_points.txt
writing manifest file 'pip.egg-info/SOURCES.txt'
reading manifest file 'pip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
writing manifest file 'pip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib
creating build/lib/pip
copying pip/__init__.py -> build/lib/pip
copying pip/__main__.py -> build/lib/pip
copying pip/basecommand.py -> build/lib/pip
copying pip/baseparser.py -> build/lib/pip
copying pip/cmdoptions.py -> build/lib/pip
copying pip/download.py -> build/lib/pip
copying pip/exceptions.py -> build/lib/pip
copying pip/index.py -> build/lib/pip
copying pip/locations.py -> build/lib/pip
copying pip/pep425tags.py -> build/lib/pip
copying pip/status_codes.py -> build/lib/pip
copying pip/wheel.py -> build/lib/pip
creating build/lib/pip/_vendor
copying pip/_vendor/__init__.py -> build/lib/pip/_vendor
copying pip/_vendor/ipaddress.py -> build/lib/pip/_vendor
copying pip/_vendor/pyparsing.py -> build/lib/pip/_vendor
copying pip/_vendor/re-vendor.py -> build/lib/pip/_vendor
copying pip/_vendor/retrying.py -> build/lib/pip/_vendor
copying pip/_vendor/six.py -> build/lib/pip/_vendor
creating build/lib/pip/commands
copying pip/commands/__init__.py -> build/lib/pip/commands
copying pip/commands/completion.py -> build/lib/pip/commands
copying pip/commands/download.py -> build/lib/pip/commands
copying pip/commands/freeze.py -> build/lib/pip/commands
copying pip/commands/hash.py -> build/lib/pip/commands
copying pip/commands/help.py -> build/lib/pip/commands
copying pip/commands/install.py -> build/lib/pip/commands
copying pip/commands/list.py -> build/lib/pip/commands
copying pip/commands/search.py -> build/lib/pip/commands
copying pip/commands/show.py -> build/lib/pip/commands
copying pip/commands/uninstall.py -> build/lib/pip/commands
copying pip/commands/wheel.py -> build/lib/pip/commands
creating build/lib/pip/compat
copying pip/compat/__init__.py -> build/lib/pip/compat
copying pip/compat/dictconfig.py -> build/lib/pip/compat
creating build/lib/pip/models
copying pip/models/__init__.py -> build/lib/pip/models
copying pip/models/index.py -> build/lib/pip/models
creating build/lib/pip/operations
copying pip/operations/__init__.py -> build/lib/pip/operations
copying pip/operations/freeze.py -> build/lib/pip/operations
creating build/lib/pip/req
copying pip/req/__init__.py -> build/lib/pip/req
copying pip/req/req_file.py -> build/lib/pip/req
copying pip/req/req_install.py -> build/lib/pip/req
copying pip/req/req_set.py -> build/lib/pip/req
copying pip/req/req_uninstall.py -> build/lib/pip/req
creating build/lib/pip/utils
copying pip/utils/__init__.py -> build/lib/pip/utils
copying pip/utils/appdirs.py -> build/lib/pip/utils
copying pip/utils/build.py -> build/lib/pip/utils
copying pip/utils/deprecation.py -> build/lib/pip/utils
copying pip/utils/encoding.py -> build/lib/pip/utils
copying pip/utils/filesystem.py -> build/lib/pip/utils
copying pip/utils/hashes.py -> build/lib/pip/utils
copying pip/utils/logging.py -> build/lib/pip/utils
copying pip/utils/outdated.py -> build/lib/pip/utils
copying pip/utils/setuptools_build.py -> build/lib/pip/utils
copying pip/utils/ui.py -> build/lib/pip/utils
creating build/lib/pip/vcs
copying pip/vcs/__init__.py -> build/lib/pip/vcs
copying pip/vcs/bazaar.py -> build/lib/pip/vcs
copying pip/vcs/git.py -> build/lib/pip/vcs
copying pip/vcs/mercurial.py -> build/lib/pip/vcs
copying pip/vcs/subversion.py -> build/lib/pip/vcs
creating build/lib/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/__init__.py -> build/lib/pip/_vendor/_markerlib
copying pip/_vendor/_markerlib/markers.py -> build/lib/pip/_vendor/_markerlib
creating build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/__init__.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/_cmd.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/adapter.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/cache.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/compat.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/controller.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/filewrapper.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/heuristics.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/serialize.py -> build/lib/pip/_vendor/cachecontrol
copying pip/_vendor/cachecontrol/wrapper.py -> build/lib/pip/_vendor/cachecontrol
creating build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/__init__.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/ansi.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/ansitowin32.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/initialise.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/win32.py -> build/lib/pip/_vendor/colorama
copying pip/_vendor/colorama/winterm.py -> build/lib/pip/_vendor/colorama
creating build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/__init__.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/compat.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/database.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/index.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/locators.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/manifest.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/markers.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/metadata.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/resources.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/scripts.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/util.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/version.py -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/wheel.py -> build/lib/pip/_vendor/distlib
creating build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/__init__.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/constants.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/html5parser.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/ihatexml.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/inputstream.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/sanitizer.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/tokenizer.py -> build/lib/pip/_vendor/html5lib
copying pip/_vendor/html5lib/utils.py -> build/lib/pip/_vendor/html5lib
creating build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/__init__.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/linklockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/mkdirlockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/pidlockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/sqlitelockfile.py -> build/lib/pip/_vendor/lockfile
copying pip/_vendor/lockfile/symlinklockfile.py -> build/lib/pip/_vendor/lockfile
creating build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/__about__.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/__init__.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/_compat.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/_structures.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/markers.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/requirements.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/specifiers.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/utils.py -> build/lib/pip/_vendor/packaging
copying pip/_vendor/packaging/version.py -> build/lib/pip/_vendor/packaging
creating build/lib/pip/_vendor/pkg_resources
copying pip/_vendor/pkg_resources/__init__.py -> build/lib/pip/_vendor/pkg_resources
creating build/lib/pip/_vendor/progress
copying pip/_vendor/progress/__init__.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/bar.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/counter.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/helpers.py -> build/lib/pip/_vendor/progress
copying pip/_vendor/progress/spinner.py -> build/lib/pip/_vendor/progress
creating build/lib/pip/_vendor/requests
copying pip/_vendor/requests/__init__.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/adapters.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/api.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/auth.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/certs.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/compat.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/cookies.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/exceptions.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/hooks.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/models.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/sessions.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/status_codes.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/structures.py -> build/lib/pip/_vendor/requests
copying pip/_vendor/requests/utils.py -> build/lib/pip/_vendor/requests
creating build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/__init__.py -> build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/file_cache.py -> build/lib/pip/_vendor/cachecontrol/caches
copying pip/_vendor/cachecontrol/caches/redis_cache.py -> build/lib/pip/_vendor/cachecontrol/caches
creating build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/__init__.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/misc.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/shutil.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/sysconfig.py -> build/lib/pip/_vendor/distlib/_backport
copying pip/_vendor/distlib/_backport/tarfile.py -> build/lib/pip/_vendor/distlib/_backport
creating build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/__init__.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/_base.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/lint.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/optionaltags.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/sanitizer.py -> build/lib/pip/_vendor/html5lib/filters
copying pip/_vendor/html5lib/filters/whitespace.py -> build/lib/pip/_vendor/html5lib/filters
creating build/lib/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/__init__.py -> build/lib/pip/_vendor/html5lib/serializer
copying pip/_vendor/html5lib/serializer/htmlserializer.py -> build/lib/pip/_vendor/html5lib/serializer
creating build/lib/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/__init__.py -> build/lib/pip/_vendor/html5lib/treeadapters
copying pip/_vendor/html5lib/treeadapters/sax.py -> build/lib/pip/_vendor/html5lib/treeadapters
creating build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/__init__.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/_base.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/dom.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree.py -> build/lib/pip/_vendor/html5lib/treebuilders
copying pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/lib/pip/_vendor/html5lib/treebuilders
creating build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/__init__.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/_base.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/dom.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/etree.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/genshistream.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/lib/pip/_vendor/html5lib/treewalkers
copying pip/_vendor/html5lib/treewalkers/pulldom.py -> build/lib/pip/_vendor/html5lib/treewalkers
creating build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/__init__.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/_base.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/datrie.py -> build/lib/pip/_vendor/html5lib/trie
copying pip/_vendor/html5lib/trie/py.py -> build/lib/pip/_vendor/html5lib/trie
creating build/lib/pip/_vendor/requests/packages
copying pip/_vendor/requests/packages/__init__.py -> build/lib/pip/_vendor/requests/packages
creating build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/__init__.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5freq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/big5prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardetect.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/chardistribution.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/charsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/compat.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/constants.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/cp949prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/escsm.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euckrprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/euctwprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jisfreq.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/jpcntx.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/latin1prober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/mbcssm.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/sjisprober.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/universaldetector.py -> build/lib/pip/_vendor/requests/packages/chardet
copying pip/_vendor/requests/packages/chardet/utf8prober.py -> build/lib/pip/_vendor/requests/packages/chardet
creating build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/_collections.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connection.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/exceptions.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/fields.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/filepost.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/request.py -> build/lib/pip/_vendor/requests/packages/urllib3
copying pip/_vendor/requests/packages/urllib3/response.py -> build/lib/pip/_vendor/requests/packages/urllib3
creating build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
copying pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/lib/pip/_vendor/requests/packages/urllib3/contrib
creating build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
copying pip/_vendor/requests/packages/urllib3/packages/six.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages
creating build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/connection.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/request.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/response.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/retry.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
copying pip/_vendor/requests/packages/urllib3/util/url.py -> build/lib/pip/_vendor/requests/packages/urllib3/util
creating build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying pip/_vendor/distlib/t32.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/t64.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/w32.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/distlib/w64.exe -> build/lib/pip/_vendor/distlib
copying pip/_vendor/requests/cacert.pem -> build/lib/pip/_vendor/requests
copying pip/_vendor/distlib/_backport/sysconfig.cfg -> build/lib/pip/_vendor/distlib/_backport
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__init__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__main__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/basecommand.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/baseparser.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/cmdoptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/download.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/exceptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/index.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/locations.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/pep425tags.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/status_codes.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/wheel.py -> build/bdist.linux-x86_64/egg/pip
creating build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/ipaddress.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/pyparsing.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/re-vendor.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/retrying.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor
creating build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/_cmd.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/adapter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/controller.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/filewrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/heuristics.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/serialize.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/wrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/file_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/redis_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
creating build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansi.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansitowin32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/initialise.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/win32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/winterm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/database.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/index.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/locators.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/manifest.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/metadata.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/resources.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/scripts.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/util.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/wheel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/misc.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/shutil.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/tarfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.cfg -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/t32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/t64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/html5parser.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/ihatexml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/inputstream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/tokenizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/lint.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/optionaltags.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/whitespace.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/htmlserializer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/sax.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/genshistream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/pulldom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/datrie.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/py.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
creating build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/linklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/mkdirlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/pidlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/sqlitelockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/symlinklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
creating build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__about__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/requirements.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/specifiers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
creating build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
copying build/lib/pip/_vendor/pkg_resources/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
creating build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/bar.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/counter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/helpers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/spinner.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/adapters.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/api.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/auth.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/certs.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/cookies.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/hooks.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/models.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/sessions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/status_codes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
copying build/lib/pip/_vendor/requests/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardetect.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardistribution.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/cp949prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escsm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jisfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jpcntx.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/latin1prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcssm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sjisprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/universaldetector.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/utf8prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/_collections.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/fields.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/filepost.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/retry.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/url.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/cacert.pem -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/__init__.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/completion.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/download.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/freeze.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/hash.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/help.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/install.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/list.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/search.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/show.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/uninstall.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/wheel.py -> build/bdist.linux-x86_64/egg/pip/commands
creating build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/__init__.py -> build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/dictconfig.py -> build/bdist.linux-x86_64/egg/pip/compat
creating build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/__init__.py -> build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/index.py -> build/bdist.linux-x86_64/egg/pip/models
creating build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/__init__.py -> build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/freeze.py -> build/bdist.linux-x86_64/egg/pip/operations
creating build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/__init__.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_file.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_install.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_set.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_uninstall.py -> build/bdist.linux-x86_64/egg/pip/req
creating build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/__init__.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/appdirs.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/deprecation.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/encoding.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/filesystem.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/hashes.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/logging.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/outdated.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/setuptools_build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/ui.py -> build/bdist.linux-x86_64/egg/pip/utils
creating build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/__init__.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/bazaar.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/git.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/mercurial.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/subversion.py -> build/bdist.linux-x86_64/egg/pip/vcs
byte-compiling build/bdist.linux-x86_64/egg/pip/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/__main__.py to __main__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/basecommand.py to basecommand.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/baseparser.py to baseparser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/cmdoptions.py to cmdoptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/locations.py to locations.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/pep425tags.py to pep425tags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/ipaddress.py to ipaddress.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pyparsing.py to pyparsing.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/re-vendor.py to re-vendor.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/retrying.py to retrying.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/_cmd.py to _cmd.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/adapter.py to adapter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/cache.py to cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/controller.py to controller.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/filewrapper.py to filewrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/heuristics.py to heuristics.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/serialize.py to serialize.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/wrapper.py to wrapper.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/file_cache.py to file_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/redis_cache.py to redis_cache.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansi.py to ansi.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansitowin32.py to ansitowin32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/initialise.py to initialise.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/win32.py to win32.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/winterm.py to winterm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/database.py to database.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/locators.py to locators.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/manifest.py to manifest.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/metadata.py to metadata.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/resources.py to resources.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/scripts.py to scripts.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/util.py to util.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/misc.py to misc.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/shutil.py to shutil.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/sysconfig.py to sysconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/tarfile.py to tarfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/html5parser.py to html5parser.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/ihatexml.py to ihatexml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/inputstream.py to inputstream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/tokenizer.py to tokenizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py to alphabeticalattributes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/inject_meta_charset.py to inject_meta_charset.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/lint.py to lint.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/optionaltags.py to optionaltags.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/sanitizer.py to sanitizer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/whitespace.py to whitespace.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/htmlserializer.py to htmlserializer.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/sax.py to sax.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py to etree_lxml.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/dom.py to dom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/etree.py to etree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/genshistream.py to genshistream.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/lxmletree.py to lxmletree.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/pulldom.py to pulldom.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/_base.py to _base.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/datrie.py to datrie.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/py.py to py.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/linklockfile.py to linklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/mkdirlockfile.py to mkdirlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/pidlockfile.py to pidlockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/sqlitelockfile.py to sqlitelockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/symlinklockfile.py to symlinklockfile.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__about__.py to __about__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_compat.py to _compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_structures.py to _structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/markers.py to markers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/requirements.py to requirements.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/specifiers.py to specifiers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/bar.py to bar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/counter.py to counter.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/helpers.py to helpers.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/spinner.py to spinner.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/adapters.py to adapters.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/api.py to api.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/auth.py to auth.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/certs.py to certs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/cookies.py to cookies.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/hooks.py to hooks.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/models.py to models.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/sessions.py to sessions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/status_codes.py to status_codes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/structures.py to structures.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/utils.py to utils.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5freq.py to big5freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5prober.py to big5prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardetect.py to chardetect.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardistribution.py to chardistribution.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetgroupprober.py to charsetgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetprober.py to charsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/codingstatemachine.py to codingstatemachine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/compat.py to compat.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/constants.py to constants.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/cp949prober.py to cp949prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escprober.py to escprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escsm.py to escsm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/eucjpprober.py to eucjpprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrfreq.py to euckrfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrprober.py to euckrprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwfreq.py to euctwfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwprober.py to euctwprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312freq.py to gb2312freq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312prober.py to gb2312prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/hebrewprober.py to hebrewprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jisfreq.py to jisfreq.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jpcntx.py to jpcntx.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py to langbulgarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py to langcyrillicmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langgreekmodel.py to langgreekmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhebrewmodel.py to langhebrewmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhungarianmodel.py to langhungarianmodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langthaimodel.py to langthaimodel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/latin1prober.py to latin1prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcharsetprober.py to mbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py to mbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcssm.py to mbcssm.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcharsetprober.py to sbcharsetprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py to sbcsgroupprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sjisprober.py to sjisprober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/universaldetector.py to universaldetector.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/utf8prober.py to utf8prober.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/_collections.py to _collections.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connectionpool.py to connectionpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/exceptions.py to exceptions.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/fields.py to fields.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/filepost.py to filepost.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/poolmanager.py to poolmanager.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/appengine.py to appengine.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py to ntlmpool.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py to pyopenssl.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py to ordered_dict.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/six.py to six.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py to _implementation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/connection.py to connection.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/request.py to request.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/response.py to response.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/retry.py to retry.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py to ssl_.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/timeout.py to timeout.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/url.py to url.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/completion.py to completion.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/download.py to download.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/hash.py to hash.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/help.py to help.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/install.py to install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/list.py to list.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/search.py to search.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/show.py to show.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/uninstall.py to uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/wheel.py to wheel.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/compat/dictconfig.py to dictconfig.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/models/index.py to index.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/operations/freeze.py to freeze.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_file.py to req_file.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_install.py to req_install.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_set.py to req_set.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/req/req_uninstall.py to req_uninstall.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/appdirs.py to appdirs.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/build.py to build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/deprecation.py to deprecation.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/encoding.py to encoding.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/filesystem.py to filesystem.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/hashes.py to hashes.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/logging.py to logging.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/outdated.py to outdated.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/setuptools_build.py to setuptools_build.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/utils/ui.py to ui.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/bazaar.py to bazaar.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/git.py to git.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/mercurial.py to mercurial.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/vcs/subversion.py to subversion.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
creating dist
creating 'dist/pip-8.1.0.dev0-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing pip-8.1.0.dev0-py2.7.egg
creating /usr/lib/python2.7/site-packages/pip-8.1.0.dev0-py2.7.egg
Extracting pip-8.1.0.dev0-py2.7.egg to /usr/lib/python2.7/site-packages
Adding pip 8.1.0.dev0 to easy-install.pth file
Installing pip script to /usr/bin
Installing pip2.7 script to /usr/bin
Installing pip2 script to /usr/bin
Installed /usr/lib/python2.7/site-packages/pip-8.1.0.dev0-py2.7.egg
Processing dependencies for pip==8.1.0.dev0
Finished processing dependencies for pip==8.1.0.dev0
running install
running bdist_egg
running egg_info
writing top-level names to pip.egg-info/top_level.txt
writing dependency_links to pip.egg-info/dependency_links.txt
writing pip.egg-info/PKG-INFO
writing entry points to pip.egg-info/entry_points.txt
writing requirements to pip.egg-info/requires.txt
reading manifest file 'pip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
writing manifest file 'pip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__init__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/__main__.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/basecommand.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/baseparser.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/cmdoptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/download.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/exceptions.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/index.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/locations.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/pep425tags.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/status_codes.py -> build/bdist.linux-x86_64/egg/pip
copying build/lib/pip/wheel.py -> build/bdist.linux-x86_64/egg/pip
creating build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/ipaddress.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/pyparsing.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/re-vendor.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/retrying.py -> build/bdist.linux-x86_64/egg/pip/_vendor
copying build/lib/pip/_vendor/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor
creating build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
copying build/lib/pip/_vendor/_markerlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/_cmd.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/adapter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/controller.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/filewrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/heuristics.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/serialize.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
copying build/lib/pip/_vendor/cachecontrol/wrapper.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol
creating build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/file_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
copying build/lib/pip/_vendor/cachecontrol/caches/redis_cache.py -> build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches
creating build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansi.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/ansitowin32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/initialise.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/win32.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
copying build/lib/pip/_vendor/colorama/winterm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/colorama
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/database.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/index.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/locators.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/manifest.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/metadata.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/resources.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/scripts.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/util.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/wheel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/misc.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/shutil.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/tarfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/_backport/sysconfig.cfg -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport
copying build/lib/pip/_vendor/distlib/t32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/t64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w32.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
copying build/lib/pip/_vendor/distlib/w64.exe -> build/bdist.linux-x86_64/egg/pip/_vendor/distlib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/html5parser.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/ihatexml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/inputstream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/tokenizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
copying build/lib/pip/_vendor/html5lib/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/alphabeticalattributes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/inject_meta_charset.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/lint.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/optionaltags.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/sanitizer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
copying build/lib/pip/_vendor/html5lib/filters/whitespace.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
copying build/lib/pip/_vendor/html5lib/serializer/htmlserializer.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
copying build/lib/pip/_vendor/html5lib/treeadapters/sax.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
copying build/lib/pip/_vendor/html5lib/treebuilders/etree_lxml.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/dom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/etree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/genshistream.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/lxmletree.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
copying build/lib/pip/_vendor/html5lib/treewalkers/pulldom.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers
creating build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/_base.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/datrie.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
copying build/lib/pip/_vendor/html5lib/trie/py.py -> build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie
creating build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/linklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/mkdirlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/pidlockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/sqlitelockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
copying build/lib/pip/_vendor/lockfile/symlinklockfile.py -> build/bdist.linux-x86_64/egg/pip/_vendor/lockfile
creating build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__about__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/_structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/markers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/requirements.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/specifiers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
copying build/lib/pip/_vendor/packaging/version.py -> build/bdist.linux-x86_64/egg/pip/_vendor/packaging
creating build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
copying build/lib/pip/_vendor/pkg_resources/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources
creating build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/bar.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/counter.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/helpers.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
copying build/lib/pip/_vendor/progress/spinner.py -> build/bdist.linux-x86_64/egg/pip/_vendor/progress
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/adapters.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/api.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/auth.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/certs.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/cookies.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/hooks.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/models.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/sessions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/status_codes.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/structures.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
copying build/lib/pip/_vendor/requests/utils.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
copying build/lib/pip/_vendor/requests/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/big5prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardetect.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/chardistribution.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/charsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/codingstatemachine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/compat.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/constants.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/cp949prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/escsm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/eucjpprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euckrprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/euctwprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312freq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/gb2312prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/hebrewprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jisfreq.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/jpcntx.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langgreekmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/langthaimodel.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/latin1prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/mbcssm.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/sjisprober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/universaldetector.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
copying build/lib/pip/_vendor/requests/packages/chardet/utf8prober.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/_collections.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/connectionpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/exceptions.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/fields.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/filepost.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/poolmanager.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
copying build/lib/pip/_vendor/requests/packages/urllib3/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/appengine.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
copying build/lib/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/six.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
copying build/lib/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname
creating build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/__init__.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/connection.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/request.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/response.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/retry.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/ssl_.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/timeout.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/packages/urllib3/util/url.py -> build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util
copying build/lib/pip/_vendor/requests/cacert.pem -> build/bdist.linux-x86_64/egg/pip/_vendor/requests
creating build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/__init__.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/completion.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/download.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/freeze.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/hash.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/help.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/install.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/list.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/search.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/show.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/uninstall.py -> build/bdist.linux-x86_64/egg/pip/commands
copying build/lib/pip/commands/wheel.py -> build/bdist.linux-x86_64/egg/pip/commands
creating build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/__init__.py -> build/bdist.linux-x86_64/egg/pip/compat
copying build/lib/pip/compat/dictconfig.py -> build/bdist.linux-x86_64/egg/pip/compat
creating build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/__init__.py -> build/bdist.linux-x86_64/egg/pip/models
copying build/lib/pip/models/index.py -> build/bdist.linux-x86_64/egg/pip/models
creating build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/__init__.py -> build/bdist.linux-x86_64/egg/pip/operations
copying build/lib/pip/operations/freeze.py -> build/bdist.linux-x86_64/egg/pip/operations
creating build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/__init__.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_file.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_install.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_set.py -> build/bdist.linux-x86_64/egg/pip/req
copying build/lib/pip/req/req_uninstall.py -> build/bdist.linux-x86_64/egg/pip/req
creating build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/__init__.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/appdirs.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/deprecation.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/encoding.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/filesystem.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/hashes.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/logging.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/outdated.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/setuptools_build.py -> build/bdist.linux-x86_64/egg/pip/utils
copying build/lib/pip/utils/ui.py -> build/bdist.linux-x86_64/egg/pip/utils
creating build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/__init__.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/bazaar.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/git.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/mercurial.py -> build/bdist.linux-x86_64/egg/pip/vcs
copying build/lib/pip/vcs/subversion.py -> build/bdist.linux-x86_64/egg/pip/vcs
byte-compiling build/bdist.linux-x86_64/egg/pip/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/__main__.py to __main__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/basecommand.py to basecommand.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/baseparser.py to baseparser.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/cmdoptions.py to cmdoptions.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/download.py to download.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/exceptions.py to exceptions.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/index.py to index.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/locations.py to locations.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/pep425tags.py to pep425tags.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/status_codes.py to status_codes.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/wheel.py to wheel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/ipaddress.py to ipaddress.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pyparsing.py to pyparsing.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/re-vendor.py to re-vendor.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/retrying.py to retrying.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/six.py to six.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/_markerlib/markers.py to markers.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/_cmd.py to _cmd.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/adapter.py to adapter.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/cache.py to cache.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/compat.py to compat.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/controller.py to controller.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/filewrapper.py to filewrapper.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/heuristics.py to heuristics.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/serialize.py to serialize.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/wrapper.py to wrapper.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/file_cache.py to file_cache.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/cachecontrol/caches/redis_cache.py to redis_cache.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansi.py to ansi.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/ansitowin32.py to ansitowin32.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/initialise.py to initialise.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/win32.py to win32.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/colorama/winterm.py to winterm.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/compat.py to compat.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/database.py to database.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/index.py to index.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/locators.py to locators.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/manifest.py to manifest.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/markers.py to markers.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/metadata.py to metadata.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/resources.py to resources.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/scripts.py to scripts.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/util.py to util.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/version.py to version.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/wheel.py to wheel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/misc.py to misc.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/shutil.py to shutil.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/sysconfig.py to sysconfig.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/distlib/_backport/tarfile.py to tarfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/constants.py to constants.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/html5parser.py to html5parser.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/ihatexml.py to ihatexml.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/inputstream.py to inputstream.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/sanitizer.py to sanitizer.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/tokenizer.py to tokenizer.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/utils.py to utils.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/_base.py to _base.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py to alphabeticalattributes.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/inject_meta_charset.py to inject_meta_charset.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/lint.py to lint.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/optionaltags.py to optionaltags.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/sanitizer.py to sanitizer.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/filters/whitespace.py to whitespace.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/serializer/htmlserializer.py to htmlserializer.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treeadapters/sax.py to sax.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/_base.py to _base.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/dom.py to dom.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree.py to etree.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py to etree_lxml.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/_base.py to _base.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/dom.py to dom.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/etree.py to etree.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/genshistream.py to genshistream.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/lxmletree.py to lxmletree.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/treewalkers/pulldom.py to pulldom.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/_base.py to _base.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/datrie.py to datrie.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/html5lib/trie/py.py to py.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/linklockfile.py to linklockfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/mkdirlockfile.py to mkdirlockfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/pidlockfile.py to pidlockfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/sqlitelockfile.py to sqlitelockfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/lockfile/symlinklockfile.py to symlinklockfile.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__about__.py to __about__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_compat.py to _compat.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/_structures.py to _structures.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/markers.py to markers.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/requirements.py to requirements.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/specifiers.py to specifiers.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/utils.py to utils.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/packaging/version.py to version.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/pkg_resources/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/bar.py to bar.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/counter.py to counter.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/helpers.py to helpers.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/progress/spinner.py to spinner.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/adapters.py to adapters.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/api.py to api.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/auth.py to auth.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/certs.py to certs.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/compat.py to compat.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/cookies.py to cookies.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/exceptions.py to exceptions.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/hooks.py to hooks.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/models.py to models.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/sessions.py to sessions.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/status_codes.py to status_codes.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/structures.py to structures.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/utils.py to utils.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5freq.py to big5freq.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/big5prober.py to big5prober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardetect.py to chardetect.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/chardistribution.py to chardistribution.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetgroupprober.py to charsetgroupprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/charsetprober.py to charsetprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/codingstatemachine.py to codingstatemachine.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/compat.py to compat.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/constants.py to constants.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/cp949prober.py to cp949prober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escprober.py to escprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/escsm.py to escsm.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/eucjpprober.py to eucjpprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrfreq.py to euckrfreq.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euckrprober.py to euckrprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwfreq.py to euctwfreq.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/euctwprober.py to euctwprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312freq.py to gb2312freq.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/gb2312prober.py to gb2312prober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/hebrewprober.py to hebrewprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jisfreq.py to jisfreq.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/jpcntx.py to jpcntx.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py to langbulgarianmodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py to langcyrillicmodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langgreekmodel.py to langgreekmodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhebrewmodel.py to langhebrewmodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langhungarianmodel.py to langhungarianmodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/langthaimodel.py to langthaimodel.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/latin1prober.py to latin1prober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcharsetprober.py to mbcharsetprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py to mbcsgroupprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/mbcssm.py to mbcssm.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcharsetprober.py to sbcharsetprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py to sbcsgroupprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/sjisprober.py to sjisprober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/universaldetector.py to universaldetector.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/chardet/utf8prober.py to utf8prober.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/_collections.py to _collections.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connection.py to connection.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/connectionpool.py to connectionpool.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/exceptions.py to exceptions.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/fields.py to fields.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/filepost.py to filepost.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/poolmanager.py to poolmanager.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/request.py to request.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/response.py to response.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/appengine.py to appengine.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py to ntlmpool.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py to pyopenssl.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py to ordered_dict.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/six.py to six.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py to _implementation.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/connection.py to connection.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/request.py to request.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/response.py to response.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/retry.py to retry.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py to ssl_.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/timeout.py to timeout.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/_vendor/requests/packages/urllib3/util/url.py to url.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/__init__.py to __init__.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/commands/completion.py to completion.cpython-33.pyc
byte-compiling build/bdist.linux-x86_64/egg/pip/command
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment