├── .bazelignore ├── .bazelrc ├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── .isort.cfg ├── BUILD ├── LICENSE ├── README.md ├── WORKSPACE ├── bin └── update-reqs ├── defs.bzl ├── examples ├── .bazelrc ├── BUILD ├── WORKSPACE ├── py3.sh ├── pytz.new_attr.patch ├── src │ ├── BUILD │ └── main.py └── tests │ ├── BUILD │ ├── requirements.in │ ├── requirements.txt │ ├── test_binary.sh │ ├── test_import.py │ └── test_numpy.c ├── src ├── BUILD ├── compile.py ├── piptool.py ├── pytest_helper.py ├── requirements.in ├── requirements.txt └── whl.py ├── tests ├── BUILD └── test_whl.py └── third_party ├── cpython ├── BUILD ├── BUILD.tpl ├── configure.bzl └── defs.bzl.tpl └── py ├── BUILD ├── _distutils_hack ├── __init__.py └── override.py ├── click-8.1.3.dist-info ├── INSTALLER ├── LICENSE.rst ├── METADATA ├── REQUESTED ├── WHEEL └── top_level.txt ├── click ├── __init__.py ├── _compat.py ├── _termui_impl.py ├── _textwrap.py ├── _winconsole.py ├── core.py ├── decorators.py ├── exceptions.py ├── formatting.py ├── globals.py ├── parser.py ├── py.typed ├── shell_completion.py ├── termui.py ├── testing.py ├── types.py └── utils.py ├── distutils-precedence.pth ├── importlib_resources-5.7.1.dist-info ├── INSTALLER ├── LICENSE ├── METADATA ├── REQUESTED ├── WHEEL └── top_level.txt ├── importlib_resources ├── __init__.py ├── _adapters.py ├── _common.py ├── _compat.py ├── _itertools.py ├── _legacy.py ├── abc.py ├── py.typed ├── readers.py ├── simple.py └── tests │ ├── __init__.py │ ├── _compat.py │ ├── data01 │ ├── __init__.py │ ├── binary.file │ ├── subdirectory │ │ ├── __init__.py │ │ └── binary.file │ ├── utf-16.file │ └── utf-8.file │ ├── data02 │ ├── __init__.py │ ├── one │ │ ├── __init__.py │ │ └── resource1.txt │ └── two │ │ ├── __init__.py │ │ └── resource2.txt │ ├── namespacedata01 │ ├── binary.file │ ├── utf-16.file │ └── utf-8.file │ ├── test_compatibilty_files.py │ ├── test_contents.py │ ├── test_files.py │ ├── test_open.py │ ├── test_path.py │ ├── test_read.py │ ├── test_reader.py │ ├── test_resource.py │ ├── update-zips.py │ ├── util.py │ ├── zipdata01 │ ├── __init__.py │ └── ziptestdata.zip │ └── zipdata02 │ ├── __init__.py │ └── ziptestdata.zip ├── installer-0.4.0.dist-info ├── INSTALLER ├── LICENSE ├── METADATA ├── REQUESTED └── WHEEL ├── installer ├── __init__.py ├── _compat │ ├── __init__.py │ ├── importlib_resources.py │ └── typing.py ├── _core.py ├── _scripts │ ├── __init__.py │ ├── t32.exe │ ├── t64-arm.exe │ ├── t64.exe │ ├── t_arm.exe │ ├── w32.exe │ ├── w64-arm.exe │ ├── w64.exe │ └── w_arm.exe ├── destinations.py ├── exceptions.py ├── records.py ├── scripts.py ├── sources.py └── utils.py ├── mock-4.0.3.dist-info ├── INSTALLER ├── LICENSE.txt ├── METADATA ├── REQUESTED ├── WHEEL └── top_level.txt ├── mock ├── __init__.py ├── backports.py └── mock.py ├── pep517-0.12.0.dist-info ├── INSTALLER ├── LICENSE ├── METADATA ├── REQUESTED └── WHEEL ├── pep517 ├── __init__.py ├── build.py ├── check.py ├── colorlog.py ├── compat.py ├── dirtools.py ├── envbuild.py ├── in_process │ ├── __init__.py │ └── _in_process.py ├── meta.py └── wrappers.py ├── pip-21.3.1.dist-info ├── INSTALLER ├── LICENSE.txt ├── METADATA ├── REQUESTED ├── WHEEL ├── entry_points.txt └── top_level.txt ├── pip ├── __init__.py ├── __main__.py ├── _internal │ ├── __init__.py │ ├── build_env.py │ ├── cache.py │ ├── cli │ │ ├── __init__.py │ │ ├── autocompletion.py │ │ ├── base_command.py │ │ ├── cmdoptions.py │ │ ├── command_context.py │ │ ├── main.py │ │ ├── main_parser.py │ │ ├── parser.py │ │ ├── progress_bars.py │ │ ├── req_command.py │ │ ├── spinners.py │ │ └── status_codes.py │ ├── commands │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── check.py │ │ ├── completion.py │ │ ├── configuration.py │ │ ├── debug.py │ │ ├── download.py │ │ ├── freeze.py │ │ ├── hash.py │ │ ├── help.py │ │ ├── index.py │ │ ├── install.py │ │ ├── list.py │ │ ├── search.py │ │ ├── show.py │ │ ├── uninstall.py │ │ └── wheel.py │ ├── configuration.py │ ├── distributions │ │ ├── __init__.py │ │ ├── base.py │ │ ├── installed.py │ │ ├── sdist.py │ │ └── wheel.py │ ├── exceptions.py │ ├── index │ │ ├── __init__.py │ │ ├── collector.py │ │ ├── package_finder.py │ │ └── sources.py │ ├── locations │ │ ├── __init__.py │ │ ├── _distutils.py │ │ ├── _sysconfig.py │ │ └── base.py │ ├── main.py │ ├── metadata │ │ ├── __init__.py │ │ ├── base.py │ │ └── pkg_resources.py │ ├── models │ │ ├── __init__.py │ │ ├── candidate.py │ │ ├── direct_url.py │ │ ├── format_control.py │ │ ├── index.py │ │ ├── link.py │ │ ├── scheme.py │ │ ├── search_scope.py │ │ ├── selection_prefs.py │ │ ├── target_python.py │ │ └── wheel.py │ ├── network │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── cache.py │ │ ├── download.py │ │ ├── lazy_wheel.py │ │ ├── session.py │ │ ├── utils.py │ │ └── xmlrpc.py │ ├── operations │ │ ├── __init__.py │ │ ├── build │ │ │ ├── __init__.py │ │ │ ├── metadata.py │ │ │ ├── metadata_editable.py │ │ │ ├── metadata_legacy.py │ │ │ ├── wheel.py │ │ │ ├── wheel_editable.py │ │ │ └── wheel_legacy.py │ │ ├── check.py │ │ ├── freeze.py │ │ ├── install │ │ │ ├── __init__.py │ │ │ ├── editable_legacy.py │ │ │ ├── legacy.py │ │ │ └── wheel.py │ │ └── prepare.py │ ├── pyproject.py │ ├── req │ │ ├── __init__.py │ │ ├── constructors.py │ │ ├── req_file.py │ │ ├── req_install.py │ │ ├── req_set.py │ │ ├── req_tracker.py │ │ └── req_uninstall.py │ ├── resolution │ │ ├── __init__.py │ │ ├── base.py │ │ ├── legacy │ │ │ ├── __init__.py │ │ │ └── resolver.py │ │ └── resolvelib │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── candidates.py │ │ │ ├── factory.py │ │ │ ├── found_candidates.py │ │ │ ├── provider.py │ │ │ ├── reporter.py │ │ │ ├── requirements.py │ │ │ └── resolver.py │ ├── self_outdated_check.py │ ├── utils │ │ ├── __init__.py │ │ ├── _log.py │ │ ├── appdirs.py │ │ ├── compat.py │ │ ├── compatibility_tags.py │ │ ├── datetime.py │ │ ├── deprecation.py │ │ ├── direct_url_helpers.py │ │ ├── distutils_args.py │ │ ├── egg_link.py │ │ ├── encoding.py │ │ ├── entrypoints.py │ │ ├── filesystem.py │ │ ├── filetypes.py │ │ ├── glibc.py │ │ ├── hashes.py │ │ ├── inject_securetransport.py │ │ ├── logging.py │ │ ├── misc.py │ │ ├── models.py │ │ ├── packaging.py │ │ ├── parallel.py │ │ ├── pkg_resources.py │ │ ├── setuptools_build.py │ │ ├── subprocess.py │ │ ├── temp_dir.py │ │ ├── unpacking.py │ │ ├── urls.py │ │ ├── virtualenv.py │ │ └── wheel.py │ ├── vcs │ │ ├── __init__.py │ │ ├── bazaar.py │ │ ├── git.py │ │ ├── mercurial.py │ │ ├── subversion.py │ │ └── versioncontrol.py │ └── wheel_builder.py ├── _vendor │ ├── __init__.py │ ├── cachecontrol │ │ ├── __init__.py │ │ ├── _cmd.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 │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cacert.pem │ │ └── core.py │ ├── chardet │ │ ├── __init__.py │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ └── chardetect.py │ │ ├── codingstatemachine.py │ │ ├── compat.py │ │ ├── cp949prober.py │ │ ├── enums.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 │ │ ├── langgreekmodel.py │ │ ├── langhebrewmodel.py │ │ ├── langhungarianmodel.py │ │ ├── langrussianmodel.py │ │ ├── langthaimodel.py │ │ ├── langturkishmodel.py │ │ ├── latin1prober.py │ │ ├── mbcharsetprober.py │ │ ├── mbcsgroupprober.py │ │ ├── mbcssm.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ └── languages.py │ │ ├── sbcharsetprober.py │ │ ├── sbcsgroupprober.py │ │ ├── sjisprober.py │ │ ├── universaldetector.py │ │ ├── utf8prober.py │ │ └── version.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-arm.exe │ │ ├── t64.exe │ │ ├── util.py │ │ ├── version.py │ │ ├── w32.exe │ │ ├── w64-arm.exe │ │ ├── w64.exe │ │ └── wheel.py │ ├── distro.py │ ├── html5lib │ │ ├── __init__.py │ │ ├── _ihatexml.py │ │ ├── _inputstream.py │ │ ├── _tokenizer.py │ │ ├── _trie │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ └── py.py │ │ ├── _utils.py │ │ ├── constants.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── alphabeticalattributes.py │ │ │ ├── base.py │ │ │ ├── inject_meta_charset.py │ │ │ ├── lint.py │ │ │ ├── optionaltags.py │ │ │ ├── sanitizer.py │ │ │ └── whitespace.py │ │ ├── html5parser.py │ │ ├── serializer.py │ │ ├── treeadapters │ │ │ ├── __init__.py │ │ │ ├── genshi.py │ │ │ └── sax.py │ │ ├── treebuilders │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ └── etree_lxml.py │ │ └── treewalkers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ ├── etree_lxml.py │ │ │ └── genshi.py │ ├── idna │ │ ├── __init__.py │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ └── uts46data.py │ ├── msgpack │ │ ├── __init__.py │ │ ├── _version.py │ │ ├── exceptions.py │ │ ├── ext.py │ │ └── fallback.py │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── _manylinux.py │ │ ├── _musllinux.py │ │ ├── _structures.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ ├── pep517 │ │ ├── __init__.py │ │ ├── build.py │ │ ├── check.py │ │ ├── colorlog.py │ │ ├── compat.py │ │ ├── dirtools.py │ │ ├── envbuild.py │ │ ├── in_process │ │ │ ├── __init__.py │ │ │ └── _in_process.py │ │ ├── meta.py │ │ └── wrappers.py │ ├── pkg_resources │ │ ├── __init__.py │ │ └── py31compat.py │ ├── platformdirs │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── android.py │ │ ├── api.py │ │ ├── macos.py │ │ ├── unix.py │ │ ├── version.py │ │ └── windows.py │ ├── progress │ │ ├── __init__.py │ │ ├── bar.py │ │ ├── colors.py │ │ ├── counter.py │ │ └── spinner.py │ ├── pyparsing.py │ ├── requests │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ ├── resolvelib │ │ ├── __init__.py │ │ ├── compat │ │ │ ├── __init__.py │ │ │ └── collections_abc.py │ │ ├── providers.py │ │ ├── reporters.py │ │ ├── resolvers.py │ │ └── structs.py │ ├── six.py │ ├── tenacity │ │ ├── __init__.py │ │ ├── _asyncio.py │ │ ├── _utils.py │ │ ├── after.py │ │ ├── before.py │ │ ├── before_sleep.py │ │ ├── nap.py │ │ ├── retry.py │ │ ├── stop.py │ │ ├── tornadoweb.py │ │ └── wait.py │ ├── tomli │ │ ├── __init__.py │ │ ├── _parser.py │ │ └── _re.py │ ├── urllib3 │ │ ├── __init__.py │ │ ├── _collections.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── _appengine_environ.py │ │ │ ├── _securetransport │ │ │ │ ├── __init__.py │ │ │ │ ├── bindings.py │ │ │ │ └── low_level.py │ │ │ ├── appengine.py │ │ │ ├── ntlmpool.py │ │ │ ├── pyopenssl.py │ │ │ ├── securetransport.py │ │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ └── makefile.py │ │ │ ├── six.py │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.py │ │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── proxy.py │ │ │ ├── queue.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── ssl_.py │ │ │ ├── ssltransport.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ └── wait.py │ ├── vendor.txt │ └── webencodings │ │ ├── __init__.py │ │ ├── labels.py │ │ ├── mklabels.py │ │ ├── tests.py │ │ └── x_user_defined.py └── py.typed ├── pip_tools-6.4.0.dist-info ├── INSTALLER ├── LICENSE ├── METADATA ├── REQUESTED ├── WHEEL ├── entry_points.txt └── top_level.txt ├── piptools ├── __init__.py ├── __main__.py ├── _compat │ ├── __init__.py │ ├── click.py │ ├── contextlib.py │ └── pip_compat.py ├── cache.py ├── exceptions.py ├── locations.py ├── logging.py ├── repositories │ ├── __init__.py │ ├── base.py │ ├── local.py │ └── pypi.py ├── resolver.py ├── scripts │ ├── __init__.py │ ├── compile.py │ └── sync.py ├── subprocess_utils.py ├── sync.py ├── utils.py └── writer.py ├── pkg_resources ├── __init__.py ├── _vendor │ ├── __init__.py │ ├── appdirs.py │ ├── importlib_resources │ │ ├── __init__.py │ │ ├── _adapters.py │ │ ├── _common.py │ │ ├── _compat.py │ │ ├── _itertools.py │ │ ├── _legacy.py │ │ ├── abc.py │ │ ├── readers.py │ │ └── simple.py │ ├── jaraco │ │ ├── __init__.py │ │ ├── context.py │ │ ├── functools.py │ │ └── text │ │ │ └── __init__.py │ ├── more_itertools │ │ ├── __init__.py │ │ ├── more.py │ │ └── recipes.py │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── _manylinux.py │ │ ├── _musllinux.py │ │ ├── _structures.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ ├── pyparsing │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── common.py │ │ ├── core.py │ │ ├── diagram │ │ │ └── __init__.py │ │ ├── exceptions.py │ │ ├── helpers.py │ │ ├── results.py │ │ ├── testing.py │ │ ├── unicode.py │ │ └── util.py │ └── zipp.py └── extern │ └── __init__.py ├── pkginfo-1.8.3.dist-info ├── INSTALLER ├── LICENSE.txt ├── METADATA ├── REQUESTED ├── WHEEL ├── entry_points.txt └── top_level.txt ├── pkginfo ├── __init__.py ├── _compat.py ├── bdist.py ├── commandline.py ├── develop.py ├── distribution.py ├── index.py ├── installed.py ├── sdist.py ├── tests │ ├── __init__.py │ ├── test_bdist.py │ ├── test_commandline.py │ ├── test_develop.py │ ├── test_distribution.py │ ├── test_index.py │ ├── test_installed.py │ ├── test_sdist.py │ ├── test_utils.py │ └── test_wheel.py ├── utils.py └── wheel.py ├── setuptools-62.4.0.dist-info ├── INSTALLER ├── LICENSE ├── METADATA ├── REQUESTED ├── WHEEL ├── entry_points.txt └── top_level.txt ├── setuptools ├── __init__.py ├── _deprecation_warning.py ├── _distutils │ ├── __init__.py │ ├── _collections.py │ ├── _functools.py │ ├── _macos_compat.py │ ├── _msvccompiler.py │ ├── archive_util.py │ ├── bcppcompiler.py │ ├── ccompiler.py │ ├── cmd.py │ ├── command │ │ ├── __init__.py │ │ ├── bdist.py │ │ ├── bdist_dumb.py │ │ ├── bdist_msi.py │ │ ├── bdist_rpm.py │ │ ├── bdist_wininst.py │ │ ├── build.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── build_scripts.py │ │ ├── check.py │ │ ├── clean.py │ │ ├── config.py │ │ ├── install.py │ │ ├── install_data.py │ │ ├── install_egg_info.py │ │ ├── install_headers.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── py37compat.py │ │ ├── register.py │ │ ├── sdist.py │ │ └── upload.py │ ├── config.py │ ├── core.py │ ├── cygwinccompiler.py │ ├── debug.py │ ├── dep_util.py │ ├── dir_util.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── fancy_getopt.py │ ├── file_util.py │ ├── filelist.py │ ├── log.py │ ├── msvc9compiler.py │ ├── msvccompiler.py │ ├── py38compat.py │ ├── py39compat.py │ ├── spawn.py │ ├── sysconfig.py │ ├── text_file.py │ ├── unixccompiler.py │ ├── util.py │ ├── version.py │ └── versionpredicate.py ├── _entry_points.py ├── _imp.py ├── _importlib.py ├── _itertools.py ├── _path.py ├── _reqs.py ├── _vendor │ ├── __init__.py │ ├── importlib_metadata │ │ ├── __init__.py │ │ ├── _adapters.py │ │ ├── _collections.py │ │ ├── _compat.py │ │ ├── _functools.py │ │ ├── _itertools.py │ │ ├── _meta.py │ │ └── _text.py │ ├── importlib_resources │ │ ├── __init__.py │ │ ├── _adapters.py │ │ ├── _common.py │ │ ├── _compat.py │ │ ├── _itertools.py │ │ ├── _legacy.py │ │ ├── abc.py │ │ ├── readers.py │ │ └── simple.py │ ├── jaraco │ │ ├── __init__.py │ │ ├── context.py │ │ ├── functools.py │ │ └── text │ │ │ └── __init__.py │ ├── more_itertools │ │ ├── __init__.py │ │ ├── more.py │ │ └── recipes.py │ ├── nspektr │ │ ├── __init__.py │ │ └── _compat.py │ ├── ordered_set.py │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── _manylinux.py │ │ ├── _musllinux.py │ │ ├── _structures.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ ├── pyparsing │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── common.py │ │ ├── core.py │ │ ├── diagram │ │ │ └── __init__.py │ │ ├── exceptions.py │ │ ├── helpers.py │ │ ├── results.py │ │ ├── testing.py │ │ ├── unicode.py │ │ └── util.py │ ├── tomli │ │ ├── __init__.py │ │ ├── _parser.py │ │ ├── _re.py │ │ └── _types.py │ ├── typing_extensions.py │ └── zipp.py ├── archive_util.py ├── build_meta.py ├── cli-32.exe ├── cli-64.exe ├── cli-arm64.exe ├── cli.exe ├── command │ ├── __init__.py │ ├── alias.py │ ├── bdist_egg.py │ ├── bdist_rpm.py │ ├── build.py │ ├── build_clib.py │ ├── build_ext.py │ ├── build_py.py │ ├── develop.py │ ├── dist_info.py │ ├── easy_install.py │ ├── egg_info.py │ ├── install.py │ ├── install_egg_info.py │ ├── install_lib.py │ ├── install_scripts.py │ ├── launcher manifest.xml │ ├── py36compat.py │ ├── register.py │ ├── rotate.py │ ├── saveopts.py │ ├── sdist.py │ ├── setopt.py │ ├── test.py │ ├── upload.py │ └── upload_docs.py ├── config │ ├── __init__.py │ ├── _apply_pyprojecttoml.py │ ├── _validate_pyproject │ │ ├── __init__.py │ │ ├── error_reporting.py │ │ ├── extra_validations.py │ │ ├── fastjsonschema_exceptions.py │ │ ├── fastjsonschema_validations.py │ │ └── formats.py │ ├── expand.py │ ├── pyprojecttoml.py │ └── setupcfg.py ├── dep_util.py ├── depends.py ├── discovery.py ├── dist.py ├── errors.py ├── extension.py ├── extern │ └── __init__.py ├── glob.py ├── gui-32.exe ├── gui-64.exe ├── gui-arm64.exe ├── gui.exe ├── installer.py ├── launch.py ├── logging.py ├── monkey.py ├── msvc.py ├── namespaces.py ├── package_index.py ├── py34compat.py ├── sandbox.py ├── script (dev).tmpl ├── script.tmpl ├── unicode_utils.py ├── version.py ├── wheel.py └── windows_support.py ├── tomli-2.0.1.dist-info ├── INSTALLER ├── LICENSE ├── METADATA ├── REQUESTED └── WHEEL ├── tomli ├── __init__.py ├── _parser.py ├── _re.py ├── _types.py └── py.typed ├── wheel-0.37.1.dist-info ├── INSTALLER ├── LICENSE.txt ├── METADATA ├── REQUESTED ├── WHEEL ├── entry_points.txt └── top_level.txt ├── wheel ├── __init__.py ├── __main__.py ├── bdist_wheel.py ├── cli │ ├── __init__.py │ ├── convert.py │ ├── pack.py │ └── unpack.py ├── macosx_libfile.py ├── metadata.py ├── pkginfo.py ├── util.py ├── vendored │ ├── __init__.py │ └── packaging │ │ ├── __init__.py │ │ ├── _typing.py │ │ └── tags.py └── wheelfile.py ├── zipp-3.8.0.dist-info ├── INSTALLER ├── LICENSE ├── METADATA ├── REQUESTED ├── WHEEL └── top_level.txt └── zipp.py /.bazelignore: -------------------------------------------------------------------------------- 1 | examples -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/.bazelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: ali5h 4 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/.isort.cfg -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/WORKSPACE -------------------------------------------------------------------------------- /bin/update-reqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/bin/update-reqs -------------------------------------------------------------------------------- /defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/defs.bzl -------------------------------------------------------------------------------- /examples/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/.bazelrc -------------------------------------------------------------------------------- /examples/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/BUILD -------------------------------------------------------------------------------- /examples/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/WORKSPACE -------------------------------------------------------------------------------- /examples/py3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec python3.8 "$@" 3 | -------------------------------------------------------------------------------- /examples/pytz.new_attr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/pytz.new_attr.patch -------------------------------------------------------------------------------- /examples/src/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/src/BUILD -------------------------------------------------------------------------------- /examples/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/src/main.py -------------------------------------------------------------------------------- /examples/tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/tests/BUILD -------------------------------------------------------------------------------- /examples/tests/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/tests/requirements.in -------------------------------------------------------------------------------- /examples/tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/tests/requirements.txt -------------------------------------------------------------------------------- /examples/tests/test_binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/tests/test_binary.sh -------------------------------------------------------------------------------- /examples/tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/tests/test_import.py -------------------------------------------------------------------------------- /examples/tests/test_numpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/examples/tests/test_numpy.c -------------------------------------------------------------------------------- /src/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/src/BUILD -------------------------------------------------------------------------------- /src/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/src/compile.py -------------------------------------------------------------------------------- /src/piptool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/src/piptool.py -------------------------------------------------------------------------------- /src/pytest_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/src/pytest_helper.py -------------------------------------------------------------------------------- /src/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/src/requirements.in -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/whl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/src/whl.py -------------------------------------------------------------------------------- /tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/tests/BUILD -------------------------------------------------------------------------------- /tests/test_whl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/tests/test_whl.py -------------------------------------------------------------------------------- /third_party/cpython/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/cpython/BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/cpython/BUILD.tpl -------------------------------------------------------------------------------- /third_party/cpython/configure.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/cpython/configure.bzl -------------------------------------------------------------------------------- /third_party/cpython/defs.bzl.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/cpython/defs.bzl.tpl -------------------------------------------------------------------------------- /third_party/py/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/BUILD -------------------------------------------------------------------------------- /third_party/py/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /third_party/py/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /third_party/py/click-8.1.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/click-8.1.3.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click-8.1.3.dist-info/LICENSE.rst -------------------------------------------------------------------------------- /third_party/py/click-8.1.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click-8.1.3.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/py/click-8.1.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/click-8.1.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /third_party/py/click-8.1.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /third_party/py/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/__init__.py -------------------------------------------------------------------------------- /third_party/py/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/_compat.py -------------------------------------------------------------------------------- /third_party/py/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/_termui_impl.py -------------------------------------------------------------------------------- /third_party/py/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/_textwrap.py -------------------------------------------------------------------------------- /third_party/py/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/_winconsole.py -------------------------------------------------------------------------------- /third_party/py/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/core.py -------------------------------------------------------------------------------- /third_party/py/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/decorators.py -------------------------------------------------------------------------------- /third_party/py/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/exceptions.py -------------------------------------------------------------------------------- /third_party/py/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/formatting.py -------------------------------------------------------------------------------- /third_party/py/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/globals.py -------------------------------------------------------------------------------- /third_party/py/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/parser.py -------------------------------------------------------------------------------- /third_party/py/click/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/click/shell_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/shell_completion.py -------------------------------------------------------------------------------- /third_party/py/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/termui.py -------------------------------------------------------------------------------- /third_party/py/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/testing.py -------------------------------------------------------------------------------- /third_party/py/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/types.py -------------------------------------------------------------------------------- /third_party/py/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/click/utils.py -------------------------------------------------------------------------------- /third_party/py/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/distutils-precedence.pth -------------------------------------------------------------------------------- /third_party/py/importlib_resources-5.7.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources-5.7.1.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources-5.7.1.dist-info/LICENSE -------------------------------------------------------------------------------- /third_party/py/importlib_resources-5.7.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources-5.7.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources-5.7.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | importlib_resources 2 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/__init__.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/_adapters.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/_common.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/_compat.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/_itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/_itertools.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/_legacy.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/abc.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/readers.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/simple.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/tests/_compat.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/data01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/data01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/data01/subdirectory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/data01/subdirectory/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/data01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/data02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/data02/one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/data02/one/resource1.txt: -------------------------------------------------------------------------------- 1 | one resource 2 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/data02/two/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/data02/two/resource2.txt: -------------------------------------------------------------------------------- 1 | two resource 2 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/namespacedata01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/namespacedata01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/test_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/tests/test_contents.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/tests/test_files.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/test_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/tests/test_open.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/test_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/tests/test_path.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/test_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/tests/test_read.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/tests/test_reader.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/tests/test_resource.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/update-zips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/tests/update-zips.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/importlib_resources/tests/util.py -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/zipdata01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/importlib_resources/tests/zipdata02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/installer-0.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/installer-0.4.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer-0.4.0.dist-info/LICENSE -------------------------------------------------------------------------------- /third_party/py/installer-0.4.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer-0.4.0.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/py/installer-0.4.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/installer-0.4.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer-0.4.0.dist-info/WHEEL -------------------------------------------------------------------------------- /third_party/py/installer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/__init__.py -------------------------------------------------------------------------------- /third_party/py/installer/_compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_compat/__init__.py -------------------------------------------------------------------------------- /third_party/py/installer/_compat/importlib_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_compat/importlib_resources.py -------------------------------------------------------------------------------- /third_party/py/installer/_compat/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_compat/typing.py -------------------------------------------------------------------------------- /third_party/py/installer/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_core.py -------------------------------------------------------------------------------- /third_party/py/installer/_scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_scripts/__init__.py -------------------------------------------------------------------------------- /third_party/py/installer/_scripts/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_scripts/t32.exe -------------------------------------------------------------------------------- /third_party/py/installer/_scripts/t64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_scripts/t64-arm.exe -------------------------------------------------------------------------------- /third_party/py/installer/_scripts/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_scripts/t64.exe -------------------------------------------------------------------------------- /third_party/py/installer/_scripts/t_arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_scripts/t_arm.exe -------------------------------------------------------------------------------- /third_party/py/installer/_scripts/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_scripts/w32.exe -------------------------------------------------------------------------------- /third_party/py/installer/_scripts/w64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_scripts/w64-arm.exe -------------------------------------------------------------------------------- /third_party/py/installer/_scripts/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_scripts/w64.exe -------------------------------------------------------------------------------- /third_party/py/installer/_scripts/w_arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/_scripts/w_arm.exe -------------------------------------------------------------------------------- /third_party/py/installer/destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/destinations.py -------------------------------------------------------------------------------- /third_party/py/installer/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/exceptions.py -------------------------------------------------------------------------------- /third_party/py/installer/records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/records.py -------------------------------------------------------------------------------- /third_party/py/installer/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/scripts.py -------------------------------------------------------------------------------- /third_party/py/installer/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/sources.py -------------------------------------------------------------------------------- /third_party/py/installer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/installer/utils.py -------------------------------------------------------------------------------- /third_party/py/mock-4.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/mock-4.0.3.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/mock-4.0.3.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /third_party/py/mock-4.0.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/mock-4.0.3.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/py/mock-4.0.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/mock-4.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /third_party/py/mock-4.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | mock 2 | -------------------------------------------------------------------------------- /third_party/py/mock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/mock/__init__.py -------------------------------------------------------------------------------- /third_party/py/mock/backports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/mock/backports.py -------------------------------------------------------------------------------- /third_party/py/mock/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/mock/mock.py -------------------------------------------------------------------------------- /third_party/py/pep517-0.12.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/pep517-0.12.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517-0.12.0.dist-info/LICENSE -------------------------------------------------------------------------------- /third_party/py/pep517-0.12.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517-0.12.0.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/py/pep517-0.12.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pep517-0.12.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517-0.12.0.dist-info/WHEEL -------------------------------------------------------------------------------- /third_party/py/pep517/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517/__init__.py -------------------------------------------------------------------------------- /third_party/py/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517/build.py -------------------------------------------------------------------------------- /third_party/py/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517/check.py -------------------------------------------------------------------------------- /third_party/py/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517/colorlog.py -------------------------------------------------------------------------------- /third_party/py/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517/compat.py -------------------------------------------------------------------------------- /third_party/py/pep517/dirtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517/dirtools.py -------------------------------------------------------------------------------- /third_party/py/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517/envbuild.py -------------------------------------------------------------------------------- /third_party/py/pep517/in_process/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517/in_process/__init__.py -------------------------------------------------------------------------------- /third_party/py/pep517/in_process/_in_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517/in_process/_in_process.py -------------------------------------------------------------------------------- /third_party/py/pep517/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517/meta.py -------------------------------------------------------------------------------- /third_party/py/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pep517/wrappers.py -------------------------------------------------------------------------------- /third_party/py/pip-21.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/pip-21.3.1.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip-21.3.1.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /third_party/py/pip-21.3.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip-21.3.1.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/py/pip-21.3.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip-21.3.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /third_party/py/pip-21.3.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip-21.3.1.dist-info/entry_points.txt -------------------------------------------------------------------------------- /third_party/py/pip-21.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/__main__.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/build_env.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cache.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/autocompletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/autocompletion.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/command_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/command_context.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/progress_bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/progress_bars.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/req_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/req_command.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/completion.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/configuration.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/download.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/index.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/uninstall.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/configuration.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/distributions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/distributions/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/distributions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/distributions/base.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/distributions/installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/distributions/installed.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/distributions/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/distributions/sdist.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/distributions/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/distributions/wheel.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /third_party/py/pip/_internal/index/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/index/collector.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/index/package_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/index/package_finder.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/index/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/index/sources.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/locations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/locations/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/locations/_distutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/locations/_distutils.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/locations/_sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/locations/_sysconfig.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/locations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/locations/base.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/main.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/metadata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/metadata/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/metadata/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/metadata/base.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/metadata/pkg_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/metadata/pkg_resources.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/models/direct_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/models/direct_url.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/models/format_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/models/format_control.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/models/index.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/models/link.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/models/search_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/models/search_scope.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/models/selection_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/models/selection_prefs.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/models/target_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/models/target_python.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /third_party/py/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/network/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/network/download.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/network/lazy_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/network/lazy_wheel.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/network/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/network/session.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_internal/operations/build/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/operations/build/metadata.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/operations/build/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/operations/build/wheel.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/operations/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/operations/freeze.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /third_party/py/pip/_internal/operations/install/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/operations/install/legacy.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/operations/install/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/operations/install/wheel.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/operations/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/operations/prepare.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/req/req_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/req/req_tracker.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/req/req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/req/req_uninstall.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/resolution/base.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_internal/resolution/legacy/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/resolution/legacy/resolver.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_internal/resolution/resolvelib/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/resolution/resolvelib/base.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/self_outdated_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/self_outdated_check.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/_log.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/compatibility_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/compatibility_tags.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/deprecation.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/direct_url_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/direct_url_helpers.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/distutils_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/distutils_args.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/egg_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/egg_link.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/entrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/entrypoints.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/filetypes.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/parallel.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/pkg_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/pkg_resources.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/setuptools_build.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/subprocess.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/unpacking.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/virtualenv.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/vcs/versioncontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/vcs/versioncontrol.py -------------------------------------------------------------------------------- /third_party/py/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/cachecontrol/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/cachecontrol/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/cachecontrol/adapter.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/cachecontrol/caches/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/cachecontrol/compat.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/cachecontrol/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/cachecontrol/controller.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/cachecontrol/filewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/cachecontrol/filewrapper.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/cachecontrol/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/cachecontrol/heuristics.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/cachecontrol/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/cachecontrol/serialize.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/cachecontrol/wrapper.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.05.30" 4 | -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/big5prober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/chardistribution.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/charsetprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/cp949prober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/escprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/eucjpprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/euckrfreq.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/euckrprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/euctwfreq.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/euctwprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/gb2312freq.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/gb2312prober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/hebrewprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/langrussianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/langrussianmodel.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/langthaimodel.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/latin1prober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/metadata/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/metadata/languages.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/sjisprober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/universaldetector.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/utf8prober.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/colorama/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/colorama/ansitowin32.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/colorama/initialise.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/_backport/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/_backport/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/_backport/misc.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/_backport/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/_backport/shutil.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/_backport/sysconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/_backport/sysconfig.cfg -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/_backport/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/_backport/sysconfig.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/_backport/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/_backport/tarfile.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/t64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/t64-arm.exe -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/w64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/w64-arm.exe -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/distro.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/_ihatexml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/_ihatexml.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/_inputstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/_inputstream.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/_tokenizer.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/_trie/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/_trie/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/_trie/_base.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/_trie/py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/_trie/py.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/constants.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/filters/base.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/filters/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/filters/lint.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/filters/sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/filters/sanitizer.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/filters/whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/filters/whitespace.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/html5parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/html5parser.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/serializer.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/treeadapters/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/treeadapters/genshi.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/treeadapters/sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/treeadapters/sax.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/treebuilders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/treebuilders/base.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/treebuilders/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/treebuilders/dom.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/treebuilders/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/treebuilders/etree.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/treewalkers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/treewalkers/base.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/treewalkers/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/treewalkers/dom.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/treewalkers/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/treewalkers/etree.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/html5lib/treewalkers/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/html5lib/treewalkers/genshi.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.2' 2 | 3 | -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 2) 2 | -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/msgpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/msgpack/exceptions.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/packaging/_manylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/packaging/_manylinux.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/packaging/_musllinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/packaging/_musllinux.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/packaging/requirements.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pep517/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pep517/dirtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pep517/dirtools.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pep517/in_process/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pep517/in_process/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pep517/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pep517/meta.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pkg_resources/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pkg_resources/py31compat.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/platformdirs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/platformdirs/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/platformdirs/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/platformdirs/__main__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/platformdirs/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/platformdirs/android.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/platformdirs/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/platformdirs/api.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/platformdirs/macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/platformdirs/macos.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/platformdirs/unix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/platformdirs/unix.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/platformdirs/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/platformdirs/version.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/platformdirs/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/platformdirs/windows.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/progress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/progress/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/progress/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/progress/colors.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/__version__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/_internal_utils.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/adapters.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/exceptions.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/packages.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/sessions.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/status_codes.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/structures.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/resolvelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/resolvelib/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/resolvelib/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/resolvelib/providers.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/resolvelib/reporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/resolvelib/reporters.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/resolvelib/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/resolvelib/resolvers.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/resolvelib/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/resolvelib/structs.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/six.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tenacity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tenacity/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tenacity/_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tenacity/_asyncio.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tenacity/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tenacity/_utils.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tenacity/after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tenacity/after.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tenacity/before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tenacity/before.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tenacity/before_sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tenacity/before_sleep.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tenacity/nap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tenacity/nap.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tenacity/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tenacity/retry.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tenacity/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tenacity/stop.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tenacity/tornadoweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tenacity/tornadoweb.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tenacity/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tenacity/wait.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tomli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tomli/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tomli/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tomli/_parser.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/tomli/_re.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/_collections.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.7" 3 | -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/connection.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/connectionpool.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/exceptions.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/packages/six.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/poolmanager.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/connection.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/proxy.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/queue.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/request.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/response.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/retry.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/timeout.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/urllib3/util/wait.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/webencodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/webencodings/__init__.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/webencodings/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/webencodings/labels.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/webencodings/mklabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/webencodings/mklabels.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/webencodings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/webencodings/tests.py -------------------------------------------------------------------------------- /third_party/py/pip/_vendor/webencodings/x_user_defined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/_vendor/webencodings/x_user_defined.py -------------------------------------------------------------------------------- /third_party/py/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip/py.typed -------------------------------------------------------------------------------- /third_party/py/pip_tools-6.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/pip_tools-6.4.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip_tools-6.4.0.dist-info/LICENSE -------------------------------------------------------------------------------- /third_party/py/pip_tools-6.4.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip_tools-6.4.0.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/py/pip_tools-6.4.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pip_tools-6.4.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /third_party/py/pip_tools-6.4.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pip_tools-6.4.0.dist-info/entry_points.txt -------------------------------------------------------------------------------- /third_party/py/pip_tools-6.4.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | piptools 2 | -------------------------------------------------------------------------------- /third_party/py/piptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/__init__.py -------------------------------------------------------------------------------- /third_party/py/piptools/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/__main__.py -------------------------------------------------------------------------------- /third_party/py/piptools/_compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/_compat/__init__.py -------------------------------------------------------------------------------- /third_party/py/piptools/_compat/click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/_compat/click.py -------------------------------------------------------------------------------- /third_party/py/piptools/_compat/contextlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/_compat/contextlib.py -------------------------------------------------------------------------------- /third_party/py/piptools/_compat/pip_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/_compat/pip_compat.py -------------------------------------------------------------------------------- /third_party/py/piptools/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/cache.py -------------------------------------------------------------------------------- /third_party/py/piptools/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/exceptions.py -------------------------------------------------------------------------------- /third_party/py/piptools/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/locations.py -------------------------------------------------------------------------------- /third_party/py/piptools/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/logging.py -------------------------------------------------------------------------------- /third_party/py/piptools/repositories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/repositories/__init__.py -------------------------------------------------------------------------------- /third_party/py/piptools/repositories/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/repositories/base.py -------------------------------------------------------------------------------- /third_party/py/piptools/repositories/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/repositories/local.py -------------------------------------------------------------------------------- /third_party/py/piptools/repositories/pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/repositories/pypi.py -------------------------------------------------------------------------------- /third_party/py/piptools/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/resolver.py -------------------------------------------------------------------------------- /third_party/py/piptools/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/piptools/scripts/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/scripts/compile.py -------------------------------------------------------------------------------- /third_party/py/piptools/scripts/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/scripts/sync.py -------------------------------------------------------------------------------- /third_party/py/piptools/subprocess_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/subprocess_utils.py -------------------------------------------------------------------------------- /third_party/py/piptools/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/sync.py -------------------------------------------------------------------------------- /third_party/py/piptools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/utils.py -------------------------------------------------------------------------------- /third_party/py/piptools/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/piptools/writer.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/__init__.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/appdirs.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/jaraco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/jaraco/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/jaraco/context.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/jaraco/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/jaraco/functools.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/packaging/version.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/pyparsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/pyparsing/__init__.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/pyparsing/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/pyparsing/actions.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/pyparsing/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/pyparsing/common.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/pyparsing/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/pyparsing/core.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/pyparsing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/pyparsing/helpers.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/pyparsing/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/pyparsing/results.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/pyparsing/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/pyparsing/testing.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/pyparsing/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/pyparsing/unicode.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/pyparsing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/pyparsing/util.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/_vendor/zipp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/_vendor/zipp.py -------------------------------------------------------------------------------- /third_party/py/pkg_resources/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkg_resources/extern/__init__.py -------------------------------------------------------------------------------- /third_party/py/pkginfo-1.8.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/pkginfo-1.8.3.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo-1.8.3.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /third_party/py/pkginfo-1.8.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo-1.8.3.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/py/pkginfo-1.8.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/pkginfo-1.8.3.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo-1.8.3.dist-info/WHEEL -------------------------------------------------------------------------------- /third_party/py/pkginfo-1.8.3.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo-1.8.3.dist-info/entry_points.txt -------------------------------------------------------------------------------- /third_party/py/pkginfo-1.8.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pkginfo 2 | -------------------------------------------------------------------------------- /third_party/py/pkginfo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/__init__.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/_compat.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/bdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/bdist.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/commandline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/commandline.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/develop.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/distribution.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/index.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/installed.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/sdist.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/tests/__init__.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/tests/test_bdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/tests/test_bdist.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/tests/test_commandline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/tests/test_commandline.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/tests/test_develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/tests/test_develop.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/tests/test_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/tests/test_distribution.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/tests/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/tests/test_index.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/tests/test_installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/tests/test_installed.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/tests/test_sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/tests/test_sdist.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/tests/test_utils.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/tests/test_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/tests/test_wheel.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/utils.py -------------------------------------------------------------------------------- /third_party/py/pkginfo/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/pkginfo/wheel.py -------------------------------------------------------------------------------- /third_party/py/setuptools-62.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/setuptools-62.4.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools-62.4.0.dist-info/LICENSE -------------------------------------------------------------------------------- /third_party/py/setuptools-62.4.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools-62.4.0.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/py/setuptools-62.4.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/setuptools-62.4.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /third_party/py/setuptools-62.4.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /third_party/py/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/__init__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_deprecation_warning.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/__init__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/_collections.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/_functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/_functools.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/_macos_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/_macos_compat.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/_msvccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/_msvccompiler.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/archive_util.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/bcppcompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/bcppcompiler.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/ccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/ccompiler.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/cmd.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/__init__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/bdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/bdist.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/bdist_dumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/bdist_dumb.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/bdist_msi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/bdist_msi.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/bdist_rpm.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/build.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/build_clib.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/build_ext.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/build_py.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/check.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/clean.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/config.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/install.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/py37compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/py37compat.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/register.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/sdist.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/command/upload.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/config.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/core.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/cygwinccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/cygwinccompiler.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/debug.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/dep_util.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/dir_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/dir_util.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/dist.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/errors.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/extension.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/fancy_getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/fancy_getopt.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/file_util.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/filelist.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/log.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/msvc9compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/msvc9compiler.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/msvccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/msvccompiler.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/py38compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/py38compat.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/py39compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/py39compat.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/spawn.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/sysconfig.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/text_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/text_file.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/unixccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/unixccompiler.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/util.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/version.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_distutils/versionpredicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_distutils/versionpredicate.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_entry_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_entry_points.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_imp.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_importlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_importlib.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_itertools.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_path.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_reqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_reqs.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/jaraco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/jaraco/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/jaraco/context.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/jaraco/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/jaraco/functools.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/jaraco/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/jaraco/text/__init__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/more_itertools/more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/more_itertools/more.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/nspektr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/nspektr/__init__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/nspektr/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/nspektr/_compat.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/ordered_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/ordered_set.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/packaging/version.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/pyparsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/pyparsing/__init__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/pyparsing/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/pyparsing/actions.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/pyparsing/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/pyparsing/common.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/pyparsing/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/pyparsing/core.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/pyparsing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/pyparsing/helpers.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/pyparsing/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/pyparsing/results.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/pyparsing/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/pyparsing/testing.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/pyparsing/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/pyparsing/unicode.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/pyparsing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/pyparsing/util.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/tomli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/tomli/__init__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/tomli/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/tomli/_parser.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/tomli/_re.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/tomli/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/tomli/_types.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/typing_extensions.py -------------------------------------------------------------------------------- /third_party/py/setuptools/_vendor/zipp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/_vendor/zipp.py -------------------------------------------------------------------------------- /third_party/py/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/archive_util.py -------------------------------------------------------------------------------- /third_party/py/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/build_meta.py -------------------------------------------------------------------------------- /third_party/py/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/cli-32.exe -------------------------------------------------------------------------------- /third_party/py/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/cli-64.exe -------------------------------------------------------------------------------- /third_party/py/setuptools/cli-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/cli-arm64.exe -------------------------------------------------------------------------------- /third_party/py/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/cli.exe -------------------------------------------------------------------------------- /third_party/py/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/__init__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/alias.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/build.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/build_clib.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/build_py.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/develop.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/easy_install.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/install.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/install_egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/install_egg_info.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/install_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/install_lib.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/install_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/install_scripts.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/launcher manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/launcher manifest.xml -------------------------------------------------------------------------------- /third_party/py/setuptools/command/py36compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/py36compat.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/register.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/rotate.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/sdist.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/setopt.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/test.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/upload.py -------------------------------------------------------------------------------- /third_party/py/setuptools/command/upload_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/command/upload_docs.py -------------------------------------------------------------------------------- /third_party/py/setuptools/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/config/__init__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/config/_apply_pyprojecttoml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/config/_apply_pyprojecttoml.py -------------------------------------------------------------------------------- /third_party/py/setuptools/config/expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/config/expand.py -------------------------------------------------------------------------------- /third_party/py/setuptools/config/pyprojecttoml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/config/pyprojecttoml.py -------------------------------------------------------------------------------- /third_party/py/setuptools/config/setupcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/config/setupcfg.py -------------------------------------------------------------------------------- /third_party/py/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/dep_util.py -------------------------------------------------------------------------------- /third_party/py/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/depends.py -------------------------------------------------------------------------------- /third_party/py/setuptools/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/discovery.py -------------------------------------------------------------------------------- /third_party/py/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/dist.py -------------------------------------------------------------------------------- /third_party/py/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/errors.py -------------------------------------------------------------------------------- /third_party/py/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/extension.py -------------------------------------------------------------------------------- /third_party/py/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /third_party/py/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/glob.py -------------------------------------------------------------------------------- /third_party/py/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/gui-32.exe -------------------------------------------------------------------------------- /third_party/py/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/gui-64.exe -------------------------------------------------------------------------------- /third_party/py/setuptools/gui-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/gui-arm64.exe -------------------------------------------------------------------------------- /third_party/py/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/gui.exe -------------------------------------------------------------------------------- /third_party/py/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/installer.py -------------------------------------------------------------------------------- /third_party/py/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/launch.py -------------------------------------------------------------------------------- /third_party/py/setuptools/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/logging.py -------------------------------------------------------------------------------- /third_party/py/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/monkey.py -------------------------------------------------------------------------------- /third_party/py/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/msvc.py -------------------------------------------------------------------------------- /third_party/py/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/namespaces.py -------------------------------------------------------------------------------- /third_party/py/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/package_index.py -------------------------------------------------------------------------------- /third_party/py/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/py34compat.py -------------------------------------------------------------------------------- /third_party/py/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/sandbox.py -------------------------------------------------------------------------------- /third_party/py/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /third_party/py/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/script.tmpl -------------------------------------------------------------------------------- /third_party/py/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /third_party/py/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/version.py -------------------------------------------------------------------------------- /third_party/py/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/wheel.py -------------------------------------------------------------------------------- /third_party/py/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/setuptools/windows_support.py -------------------------------------------------------------------------------- /third_party/py/tomli-2.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/tomli-2.0.1.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/tomli-2.0.1.dist-info/LICENSE -------------------------------------------------------------------------------- /third_party/py/tomli-2.0.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/tomli-2.0.1.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/py/tomli-2.0.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/tomli-2.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.6.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /third_party/py/tomli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/tomli/__init__.py -------------------------------------------------------------------------------- /third_party/py/tomli/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/tomli/_parser.py -------------------------------------------------------------------------------- /third_party/py/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/tomli/_re.py -------------------------------------------------------------------------------- /third_party/py/tomli/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/tomli/_types.py -------------------------------------------------------------------------------- /third_party/py/tomli/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /third_party/py/wheel-0.37.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/wheel-0.37.1.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel-0.37.1.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /third_party/py/wheel-0.37.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel-0.37.1.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/py/wheel-0.37.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/wheel-0.37.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel-0.37.1.dist-info/WHEEL -------------------------------------------------------------------------------- /third_party/py/wheel-0.37.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel-0.37.1.dist-info/entry_points.txt -------------------------------------------------------------------------------- /third_party/py/wheel-0.37.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /third_party/py/wheel/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.37.1' 2 | -------------------------------------------------------------------------------- /third_party/py/wheel/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/__main__.py -------------------------------------------------------------------------------- /third_party/py/wheel/bdist_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/bdist_wheel.py -------------------------------------------------------------------------------- /third_party/py/wheel/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/cli/__init__.py -------------------------------------------------------------------------------- /third_party/py/wheel/cli/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/cli/convert.py -------------------------------------------------------------------------------- /third_party/py/wheel/cli/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/cli/pack.py -------------------------------------------------------------------------------- /third_party/py/wheel/cli/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/cli/unpack.py -------------------------------------------------------------------------------- /third_party/py/wheel/macosx_libfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/macosx_libfile.py -------------------------------------------------------------------------------- /third_party/py/wheel/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/metadata.py -------------------------------------------------------------------------------- /third_party/py/wheel/pkginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/pkginfo.py -------------------------------------------------------------------------------- /third_party/py/wheel/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/util.py -------------------------------------------------------------------------------- /third_party/py/wheel/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/wheel/vendored/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/wheel/vendored/packaging/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/vendored/packaging/_typing.py -------------------------------------------------------------------------------- /third_party/py/wheel/vendored/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/vendored/packaging/tags.py -------------------------------------------------------------------------------- /third_party/py/wheel/wheelfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/wheel/wheelfile.py -------------------------------------------------------------------------------- /third_party/py/zipp-3.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /third_party/py/zipp-3.8.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/zipp-3.8.0.dist-info/LICENSE -------------------------------------------------------------------------------- /third_party/py/zipp-3.8.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/zipp-3.8.0.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/py/zipp-3.8.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/zipp-3.8.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /third_party/py/zipp-3.8.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | zipp 2 | -------------------------------------------------------------------------------- /third_party/py/zipp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali5h/rules_pip/HEAD/third_party/py/zipp.py --------------------------------------------------------------------------------