├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── Readme.md ├── bin ├── compile ├── detect ├── release ├── steps │ ├── collectstatic │ ├── cryptography │ ├── gdal │ ├── geo-libs │ ├── hooks │ │ ├── post_compile │ │ └── pre_compile │ ├── mercurial │ ├── nltk-corpora │ ├── pip-install │ ├── pip-uninstall │ ├── pylibmc │ ├── python │ └── setuptools ├── test ├── utils └── warnings ├── requirements.txt └── vendor ├── bpwatch ├── bpwatch └── bpwatch.zip ├── pip-8.1.1.tar.gz ├── pip-pop ├── docopt.py ├── pip-diff ├── pip-grep └── pip │ ├── __init__.py │ ├── __main__.py │ ├── _vendor │ ├── README.rst │ ├── __init__.py │ ├── _markerlib │ │ ├── __init__.py │ │ └── markers.py │ ├── cachecontrol │ │ ├── __init__.py │ │ ├── adapter.py │ │ ├── cache.py │ │ ├── caches │ │ │ ├── __init__.py │ │ │ ├── file_cache.py │ │ │ └── redis_cache.py │ │ ├── compat.py │ │ ├── controller.py │ │ ├── filewrapper.py │ │ ├── heuristics.py │ │ ├── serialize.py │ │ └── wrapper.py │ ├── colorama │ │ ├── __init__.py │ │ ├── ansi.py │ │ ├── ansitowin32.py │ │ ├── initialise.py │ │ ├── win32.py │ │ └── winterm.py │ ├── distlib │ │ ├── __init__.py │ │ ├── _backport │ │ │ ├── __init__.py │ │ │ ├── misc.py │ │ │ ├── shutil.py │ │ │ ├── sysconfig.cfg │ │ │ ├── sysconfig.py │ │ │ └── tarfile.py │ │ ├── compat.py │ │ ├── database.py │ │ ├── index.py │ │ ├── locators.py │ │ ├── manifest.py │ │ ├── markers.py │ │ ├── metadata.py │ │ ├── resources.py │ │ ├── scripts.py │ │ ├── t32.exe │ │ ├── t64.exe │ │ ├── util.py │ │ ├── version.py │ │ ├── w32.exe │ │ ├── w64.exe │ │ └── wheel.py │ ├── html5lib │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── alphabeticalattributes.py │ │ │ ├── inject_meta_charset.py │ │ │ ├── lint.py │ │ │ ├── optionaltags.py │ │ │ ├── sanitizer.py │ │ │ └── whitespace.py │ │ ├── html5parser.py │ │ ├── ihatexml.py │ │ ├── inputstream.py │ │ ├── sanitizer.py │ │ ├── serializer │ │ │ ├── __init__.py │ │ │ └── htmlserializer.py │ │ ├── tokenizer.py │ │ ├── treeadapters │ │ │ ├── __init__.py │ │ │ └── sax.py │ │ ├── treebuilders │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ └── etree_lxml.py │ │ ├── treewalkers │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ ├── genshistream.py │ │ │ ├── lxmletree.py │ │ │ └── pulldom.py │ │ ├── trie │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── datrie.py │ │ │ └── py.py │ │ └── utils.py │ ├── ipaddress.py │ ├── lockfile │ │ ├── __init__.py │ │ ├── linklockfile.py │ │ ├── mkdirlockfile.py │ │ ├── pidlockfile.py │ │ ├── sqlitelockfile.py │ │ └── symlinklockfile.py │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── _structures.py │ │ ├── specifiers.py │ │ └── version.py │ ├── pkg_resources │ │ └── __init__.py │ ├── progress │ │ ├── __init__.py │ │ ├── bar.py │ │ ├── counter.py │ │ ├── helpers.py │ │ └── spinner.py │ ├── re-vendor.py │ ├── requests │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── cacert.pem │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardetect.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── constants.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── escprober.py │ │ │ │ ├── escsm.py │ │ │ │ ├── eucjpprober.py │ │ │ │ ├── euckrfreq.py │ │ │ │ ├── euckrprober.py │ │ │ │ ├── euctwfreq.py │ │ │ │ ├── euctwprober.py │ │ │ │ ├── gb2312freq.py │ │ │ │ ├── gb2312prober.py │ │ │ │ ├── hebrewprober.py │ │ │ │ ├── jisfreq.py │ │ │ │ ├── jpcntx.py │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ └── utf8prober.py │ │ │ └── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── ntlmpool.py │ │ │ │ └── pyopenssl.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── ordered_dict.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ └── url.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ ├── retrying.py │ ├── six.py │ └── vendor.txt │ ├── basecommand.py │ ├── baseparser.py │ ├── cmdoptions.py │ ├── commands │ ├── __init__.py │ ├── completion.py │ ├── freeze.py │ ├── help.py │ ├── install.py │ ├── list.py │ ├── search.py │ ├── show.py │ ├── uninstall.py │ └── wheel.py │ ├── compat │ ├── __init__.py │ └── dictconfig.py │ ├── download.py │ ├── exceptions.py │ ├── index.py │ ├── locations.py │ ├── models │ ├── __init__.py │ └── index.py │ ├── operations │ ├── __init__.py │ └── freeze.py │ ├── pep425tags.py │ ├── req │ ├── __init__.py │ ├── req_file.py │ ├── req_install.py │ ├── req_set.py │ └── req_uninstall.py │ ├── status_codes.py │ ├── utils │ ├── __init__.py │ ├── appdirs.py │ ├── build.py │ ├── deprecation.py │ ├── filesystem.py │ ├── logging.py │ ├── outdated.py │ └── ui.py │ ├── vcs │ ├── __init__.py │ ├── bazaar.py │ ├── git.py │ ├── mercurial.py │ └── subversion.py │ └── wheel.py ├── python.gunicorn.sh ├── setuptools-20.4.tar.gz ├── shunit2 └── test-utils /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | site 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/detect -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/release -------------------------------------------------------------------------------- /bin/steps/collectstatic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/collectstatic -------------------------------------------------------------------------------- /bin/steps/cryptography: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/cryptography -------------------------------------------------------------------------------- /bin/steps/gdal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/gdal -------------------------------------------------------------------------------- /bin/steps/geo-libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/geo-libs -------------------------------------------------------------------------------- /bin/steps/hooks/post_compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/hooks/post_compile -------------------------------------------------------------------------------- /bin/steps/hooks/pre_compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/hooks/pre_compile -------------------------------------------------------------------------------- /bin/steps/mercurial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/mercurial -------------------------------------------------------------------------------- /bin/steps/nltk-corpora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/nltk-corpora -------------------------------------------------------------------------------- /bin/steps/pip-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/pip-install -------------------------------------------------------------------------------- /bin/steps/pip-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/pip-uninstall -------------------------------------------------------------------------------- /bin/steps/pylibmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/pylibmc -------------------------------------------------------------------------------- /bin/steps/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/python -------------------------------------------------------------------------------- /bin/steps/setuptools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/steps/setuptools -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/test -------------------------------------------------------------------------------- /bin/utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/utils -------------------------------------------------------------------------------- /bin/warnings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/bin/warnings -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bob-builder==0.0.5 2 | -------------------------------------------------------------------------------- /vendor/bpwatch/bpwatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/bpwatch/bpwatch -------------------------------------------------------------------------------- /vendor/bpwatch/bpwatch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/bpwatch/bpwatch.zip -------------------------------------------------------------------------------- /vendor/pip-8.1.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-8.1.1.tar.gz -------------------------------------------------------------------------------- /vendor/pip-pop/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/docopt.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip-diff -------------------------------------------------------------------------------- /vendor/pip-pop/pip-grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip-grep -------------------------------------------------------------------------------- /vendor/pip-pop/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/__main__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/README.rst -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/_markerlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/_markerlib/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/_markerlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/_markerlib/markers.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/adapter.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/caches/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/caches/file_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/caches/file_cache.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/caches/redis_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/caches/redis_cache.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/compat.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/controller.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/filewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/filewrapper.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/heuristics.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/serialize.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/cachecontrol/wrapper.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/colorama/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/colorama/ansitowin32.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/colorama/initialise.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/_backport/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/_backport/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/_backport/misc.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/_backport/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/_backport/shutil.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/_backport/sysconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/_backport/sysconfig.cfg -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/_backport/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/_backport/sysconfig.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/_backport/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/_backport/tarfile.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/constants.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/filters/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/filters/_base.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/filters/alphabeticalattributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/filters/alphabeticalattributes.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/filters/inject_meta_charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/filters/inject_meta_charset.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/filters/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/filters/lint.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/filters/optionaltags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/filters/optionaltags.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/filters/sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/filters/sanitizer.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/filters/whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/filters/whitespace.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/html5parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/html5parser.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/ihatexml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/ihatexml.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/inputstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/inputstream.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/sanitizer.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/serializer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/serializer/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/serializer/htmlserializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/serializer/htmlserializer.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/tokenizer.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treeadapters/sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treeadapters/sax.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treebuilders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treebuilders/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treebuilders/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treebuilders/_base.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treebuilders/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treebuilders/dom.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treebuilders/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treebuilders/etree.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treebuilders/etree_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treebuilders/etree_lxml.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treewalkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treewalkers/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treewalkers/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treewalkers/_base.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treewalkers/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treewalkers/dom.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treewalkers/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treewalkers/etree.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treewalkers/genshistream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treewalkers/genshistream.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treewalkers/lxmletree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treewalkers/lxmletree.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/treewalkers/pulldom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/treewalkers/pulldom.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/trie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/trie/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/trie/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/trie/_base.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/trie/datrie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/trie/datrie.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/trie/py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/trie/py.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/html5lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/html5lib/utils.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/lockfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/lockfile/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/lockfile/linklockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/lockfile/linklockfile.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/lockfile/mkdirlockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/lockfile/mkdirlockfile.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/lockfile/pidlockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/lockfile/pidlockfile.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/lockfile/sqlitelockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/lockfile/sqlitelockfile.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/lockfile/symlinklockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/lockfile/symlinklockfile.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/pkg_resources/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/progress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/progress/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/progress/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/progress/helpers.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/re-vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/re-vendor.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/adapters.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/cacert.pem -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/exceptions.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/big5freq.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/big5prober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/chardetect.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/chardistribution.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/charsetprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/compat.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/constants.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/cp949prober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/escprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/escsm.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/eucjpprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/euckrfreq.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/euckrprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/euctwfreq.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/euctwprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/gb2312freq.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/gb2312prober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/hebrewprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/jisfreq.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/jpcntx.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/langthaimodel.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/latin1prober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/mbcssm.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/sjisprober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/universaldetector.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/chardet/utf8prober.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/_collections.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/connection.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/connectionpool.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/fields.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/filepost.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/request.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/response.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/connection.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/request.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/response.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/retry.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/timeout.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/packages/urllib3/util/url.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/sessions.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/status_codes.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/structures.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/six.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /vendor/pip-pop/pip/basecommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/basecommand.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/baseparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/baseparser.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/cmdoptions.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/commands/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/commands/completion.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/commands/freeze.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/commands/help.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/commands/install.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/commands/list.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/commands/search.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/commands/show.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/commands/uninstall.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/commands/wheel.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/compat/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/compat/dictconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/compat/dictconfig.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/download.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/exceptions.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/index.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/locations.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/models/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/models/index.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/pip-pop/pip/operations/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/operations/freeze.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/pep425tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/pep425tags.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/req/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/req/req_file.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/req/req_install.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/req/req_set.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/req/req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/req/req_uninstall.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/status_codes.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/utils/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/utils/appdirs.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/utils/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/utils/build.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/utils/deprecation.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/utils/filesystem.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/utils/logging.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/utils/outdated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/utils/outdated.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/utils/ui.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/vcs/__init__.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/vcs/bazaar.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/vcs/git.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/vcs/mercurial.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/vcs/subversion.py -------------------------------------------------------------------------------- /vendor/pip-pop/pip/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/pip-pop/pip/wheel.py -------------------------------------------------------------------------------- /vendor/python.gunicorn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/python.gunicorn.sh -------------------------------------------------------------------------------- /vendor/setuptools-20.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/setuptools-20.4.tar.gz -------------------------------------------------------------------------------- /vendor/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/shunit2 -------------------------------------------------------------------------------- /vendor/test-utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megacool/heroku-buildpack-python-nltk/HEAD/vendor/test-utils --------------------------------------------------------------------------------