├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── bin └── mcp-code-analyzer.js ├── dist ├── mcp_code_analyzer-0.1.0-py3-none-any.whl └── mcp_code_analyzer-0.1.0.tar.gz ├── package.json ├── pyproject.toml ├── setup.py ├── src ├── index.ts └── mcp_code_analyzer │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ ├── __init__.cpython-311.pyc │ └── server.cpython-311.pyc │ └── server.py ├── test.py ├── test_analyzer.py ├── test_code.py ├── test_package.py ├── tsconfig.json └── venv ├── bin ├── Activate.ps1 ├── activate ├── activate.csh ├── activate.fish ├── hatchling ├── pip ├── pip3 ├── pip3.11 ├── pyproject-build ├── python ├── python3 └── python3.11 ├── lib └── python3.11 │ └── site-packages │ ├── _distutils_hack │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ └── override.cpython-311.pyc │ └── override.py │ ├── _mcp_code_analyzer.pth │ ├── build-1.2.2.post1.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── entry_points.txt │ ├── distutils-precedence.pth │ ├── hatchling-1.26.3.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── licenses │ │ └── LICENSE.txt │ ├── hatchling │ ├── __about__.py │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __about__.cpython-311.pyc │ │ ├── __init__.cpython-311.pyc │ │ ├── __main__.cpython-311.pyc │ │ ├── build.cpython-311.pyc │ │ └── ouroboros.cpython-311.pyc │ ├── bridge │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── app.cpython-311.pyc │ │ └── app.py │ ├── build.py │ ├── builders │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── app.cpython-311.pyc │ │ │ ├── binary.cpython-311.pyc │ │ │ ├── config.cpython-311.pyc │ │ │ ├── constants.cpython-311.pyc │ │ │ ├── custom.cpython-311.pyc │ │ │ ├── macos.cpython-311.pyc │ │ │ ├── sdist.cpython-311.pyc │ │ │ ├── utils.cpython-311.pyc │ │ │ └── wheel.cpython-311.pyc │ │ ├── app.py │ │ ├── binary.py │ │ ├── config.py │ │ ├── constants.py │ │ ├── custom.py │ │ ├── hooks │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── custom.cpython-311.pyc │ │ │ │ └── version.cpython-311.pyc │ │ │ ├── custom.py │ │ │ ├── plugin │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── hooks.cpython-311.pyc │ │ │ │ │ └── interface.cpython-311.pyc │ │ │ │ ├── hooks.py │ │ │ │ └── interface.py │ │ │ └── version.py │ │ ├── macos.py │ │ ├── plugin │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── hooks.cpython-311.pyc │ │ │ │ └── interface.cpython-311.pyc │ │ │ ├── hooks.py │ │ │ └── interface.py │ │ ├── sdist.py │ │ ├── utils.py │ │ └── wheel.py │ ├── cli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-311.pyc │ │ ├── dep │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── core.cpython-311.pyc │ │ │ └── core.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-311.pyc │ │ └── version │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-311.pyc │ ├── dep │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── core.cpython-311.pyc │ │ └── core.py │ ├── licenses │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── supported.cpython-311.pyc │ │ └── supported.py │ ├── metadata │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── core.cpython-311.pyc │ │ │ ├── custom.cpython-311.pyc │ │ │ ├── spec.cpython-311.pyc │ │ │ └── utils.cpython-311.pyc │ │ ├── core.py │ │ ├── custom.py │ │ ├── plugin │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── hooks.cpython-311.pyc │ │ │ │ └── interface.cpython-311.pyc │ │ │ ├── hooks.py │ │ │ └── interface.py │ │ ├── spec.py │ │ └── utils.py │ ├── ouroboros.py │ ├── plugin │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── exceptions.cpython-311.pyc │ │ │ ├── manager.cpython-311.pyc │ │ │ ├── specs.cpython-311.pyc │ │ │ └── utils.cpython-311.pyc │ │ ├── exceptions.py │ │ ├── manager.py │ │ ├── specs.py │ │ └── utils.py │ ├── py.typed │ ├── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── constants.cpython-311.pyc │ │ │ ├── context.cpython-311.pyc │ │ │ └── fs.cpython-311.pyc │ │ ├── constants.py │ │ ├── context.py │ │ └── fs.py │ └── version │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ └── core.cpython-311.pyc │ │ ├── core.py │ │ ├── scheme │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── standard.cpython-311.pyc │ │ ├── plugin │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── hooks.cpython-311.pyc │ │ │ │ └── interface.cpython-311.pyc │ │ │ ├── hooks.py │ │ │ └── interface.py │ │ └── standard.py │ │ └── source │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── code.cpython-311.pyc │ │ ├── env.cpython-311.pyc │ │ └── regex.cpython-311.pyc │ │ ├── code.py │ │ ├── env.py │ │ ├── plugin │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── hooks.cpython-311.pyc │ │ │ └── interface.cpython-311.pyc │ │ ├── hooks.py │ │ └── interface.py │ │ └── regex.py │ ├── mcp_code_analyzer-0.1.0.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── direct_url.json │ ├── packaging-24.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── LICENSE.APACHE │ ├── LICENSE.BSD │ ├── METADATA │ ├── RECORD │ └── WHEEL │ ├── packaging │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _elffile.cpython-311.pyc │ │ ├── _manylinux.cpython-311.pyc │ │ ├── _musllinux.cpython-311.pyc │ │ ├── _parser.cpython-311.pyc │ │ ├── _structures.cpython-311.pyc │ │ ├── _tokenizer.cpython-311.pyc │ │ ├── markers.cpython-311.pyc │ │ ├── metadata.cpython-311.pyc │ │ ├── requirements.cpython-311.pyc │ │ ├── specifiers.cpython-311.pyc │ │ ├── tags.cpython-311.pyc │ │ ├── utils.cpython-311.pyc │ │ └── version.cpython-311.pyc │ ├── _elffile.py │ ├── _manylinux.py │ ├── _musllinux.py │ ├── _parser.py │ ├── _structures.py │ ├── _tokenizer.py │ ├── licenses │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── _spdx.cpython-311.pyc │ │ └── _spdx.py │ ├── markers.py │ ├── metadata.py │ ├── py.typed │ ├── requirements.py │ ├── specifiers.py │ ├── tags.py │ ├── utils.py │ └── version.py │ ├── pathspec-0.12.1.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ └── WHEEL │ ├── pathspec │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _meta.cpython-311.pyc │ │ ├── gitignore.cpython-311.pyc │ │ ├── pathspec.cpython-311.pyc │ │ ├── pattern.cpython-311.pyc │ │ └── util.cpython-311.pyc │ ├── _meta.py │ ├── gitignore.py │ ├── pathspec.py │ ├── pattern.py │ ├── patterns │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── gitwildmatch.cpython-311.pyc │ │ └── gitwildmatch.py │ ├── py.typed │ └── util.py │ ├── pip-24.3.1.dist-info │ ├── AUTHORS.txt │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pip-runner__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __main__.cpython-311.pyc │ │ └── __pip-runner__.cpython-311.pyc │ ├── _internal │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── build_env.cpython-311.pyc │ │ │ ├── cache.cpython-311.pyc │ │ │ ├── configuration.cpython-311.pyc │ │ │ ├── exceptions.cpython-311.pyc │ │ │ ├── main.cpython-311.pyc │ │ │ ├── pyproject.cpython-311.pyc │ │ │ ├── self_outdated_check.cpython-311.pyc │ │ │ └── wheel_builder.cpython-311.pyc │ │ ├── build_env.py │ │ ├── cache.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── autocompletion.cpython-311.pyc │ │ │ │ ├── base_command.cpython-311.pyc │ │ │ │ ├── cmdoptions.cpython-311.pyc │ │ │ │ ├── command_context.cpython-311.pyc │ │ │ │ ├── index_command.cpython-311.pyc │ │ │ │ ├── main.cpython-311.pyc │ │ │ │ ├── main_parser.cpython-311.pyc │ │ │ │ ├── parser.cpython-311.pyc │ │ │ │ ├── progress_bars.cpython-311.pyc │ │ │ │ ├── req_command.cpython-311.pyc │ │ │ │ ├── spinners.cpython-311.pyc │ │ │ │ └── status_codes.cpython-311.pyc │ │ │ ├── autocompletion.py │ │ │ ├── base_command.py │ │ │ ├── cmdoptions.py │ │ │ ├── command_context.py │ │ │ ├── index_command.py │ │ │ ├── main.py │ │ │ ├── main_parser.py │ │ │ ├── parser.py │ │ │ ├── progress_bars.py │ │ │ ├── req_command.py │ │ │ ├── spinners.py │ │ │ └── status_codes.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── cache.cpython-311.pyc │ │ │ │ ├── check.cpython-311.pyc │ │ │ │ ├── completion.cpython-311.pyc │ │ │ │ ├── configuration.cpython-311.pyc │ │ │ │ ├── debug.cpython-311.pyc │ │ │ │ ├── download.cpython-311.pyc │ │ │ │ ├── freeze.cpython-311.pyc │ │ │ │ ├── hash.cpython-311.pyc │ │ │ │ ├── help.cpython-311.pyc │ │ │ │ ├── index.cpython-311.pyc │ │ │ │ ├── inspect.cpython-311.pyc │ │ │ │ ├── install.cpython-311.pyc │ │ │ │ ├── list.cpython-311.pyc │ │ │ │ ├── search.cpython-311.pyc │ │ │ │ ├── show.cpython-311.pyc │ │ │ │ ├── uninstall.cpython-311.pyc │ │ │ │ └── wheel.cpython-311.pyc │ │ │ ├── cache.py │ │ │ ├── check.py │ │ │ ├── completion.py │ │ │ ├── configuration.py │ │ │ ├── debug.py │ │ │ ├── download.py │ │ │ ├── freeze.py │ │ │ ├── hash.py │ │ │ ├── help.py │ │ │ ├── index.py │ │ │ ├── inspect.py │ │ │ ├── install.py │ │ │ ├── list.py │ │ │ ├── search.py │ │ │ ├── show.py │ │ │ ├── uninstall.py │ │ │ └── wheel.py │ │ ├── configuration.py │ │ ├── distributions │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── base.cpython-311.pyc │ │ │ │ ├── installed.cpython-311.pyc │ │ │ │ ├── sdist.cpython-311.pyc │ │ │ │ └── wheel.cpython-311.pyc │ │ │ ├── base.py │ │ │ ├── installed.py │ │ │ ├── sdist.py │ │ │ └── wheel.py │ │ ├── exceptions.py │ │ ├── index │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── collector.cpython-311.pyc │ │ │ │ ├── package_finder.cpython-311.pyc │ │ │ │ └── sources.cpython-311.pyc │ │ │ ├── collector.py │ │ │ ├── package_finder.py │ │ │ └── sources.py │ │ ├── locations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _distutils.cpython-311.pyc │ │ │ │ ├── _sysconfig.cpython-311.pyc │ │ │ │ └── base.cpython-311.pyc │ │ │ ├── _distutils.py │ │ │ ├── _sysconfig.py │ │ │ └── base.py │ │ ├── main.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _json.cpython-311.pyc │ │ │ │ ├── base.cpython-311.pyc │ │ │ │ └── pkg_resources.cpython-311.pyc │ │ │ ├── _json.py │ │ │ ├── base.py │ │ │ ├── importlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── _compat.cpython-311.pyc │ │ │ │ │ ├── _dists.cpython-311.pyc │ │ │ │ │ └── _envs.cpython-311.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _dists.py │ │ │ │ └── _envs.py │ │ │ └── pkg_resources.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── candidate.cpython-311.pyc │ │ │ │ ├── direct_url.cpython-311.pyc │ │ │ │ ├── format_control.cpython-311.pyc │ │ │ │ ├── index.cpython-311.pyc │ │ │ │ ├── installation_report.cpython-311.pyc │ │ │ │ ├── link.cpython-311.pyc │ │ │ │ ├── scheme.cpython-311.pyc │ │ │ │ ├── search_scope.cpython-311.pyc │ │ │ │ ├── selection_prefs.cpython-311.pyc │ │ │ │ ├── target_python.cpython-311.pyc │ │ │ │ └── wheel.cpython-311.pyc │ │ │ ├── candidate.py │ │ │ ├── direct_url.py │ │ │ ├── format_control.py │ │ │ ├── index.py │ │ │ ├── installation_report.py │ │ │ ├── link.py │ │ │ ├── scheme.py │ │ │ ├── search_scope.py │ │ │ ├── selection_prefs.py │ │ │ ├── target_python.py │ │ │ └── wheel.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── auth.cpython-311.pyc │ │ │ │ ├── cache.cpython-311.pyc │ │ │ │ ├── download.cpython-311.pyc │ │ │ │ ├── lazy_wheel.cpython-311.pyc │ │ │ │ ├── session.cpython-311.pyc │ │ │ │ ├── utils.cpython-311.pyc │ │ │ │ └── xmlrpc.cpython-311.pyc │ │ │ ├── auth.py │ │ │ ├── cache.py │ │ │ ├── download.py │ │ │ ├── lazy_wheel.py │ │ │ ├── session.py │ │ │ ├── utils.py │ │ │ └── xmlrpc.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── check.cpython-311.pyc │ │ │ │ ├── freeze.cpython-311.pyc │ │ │ │ └── prepare.cpython-311.pyc │ │ │ ├── check.py │ │ │ ├── freeze.py │ │ │ ├── install │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── editable_legacy.cpython-311.pyc │ │ │ │ │ └── wheel.cpython-311.pyc │ │ │ │ ├── editable_legacy.py │ │ │ │ └── wheel.py │ │ │ └── prepare.py │ │ ├── pyproject.py │ │ ├── req │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── constructors.cpython-311.pyc │ │ │ │ ├── req_file.cpython-311.pyc │ │ │ │ ├── req_install.cpython-311.pyc │ │ │ │ ├── req_set.cpython-311.pyc │ │ │ │ └── req_uninstall.cpython-311.pyc │ │ │ ├── constructors.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ └── req_uninstall.py │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── base.cpython-311.pyc │ │ │ ├── base.py │ │ │ ├── legacy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ └── resolver.cpython-311.pyc │ │ │ │ └── resolver.py │ │ │ └── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── base.cpython-311.pyc │ │ │ │ ├── candidates.cpython-311.pyc │ │ │ │ ├── factory.cpython-311.pyc │ │ │ │ ├── found_candidates.cpython-311.pyc │ │ │ │ ├── provider.cpython-311.pyc │ │ │ │ ├── reporter.cpython-311.pyc │ │ │ │ ├── requirements.cpython-311.pyc │ │ │ │ └── resolver.cpython-311.pyc │ │ │ │ ├── base.py │ │ │ │ ├── candidates.py │ │ │ │ ├── factory.py │ │ │ │ ├── found_candidates.py │ │ │ │ ├── provider.py │ │ │ │ ├── reporter.py │ │ │ │ ├── requirements.py │ │ │ │ └── resolver.py │ │ ├── self_outdated_check.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _jaraco_text.cpython-311.pyc │ │ │ │ ├── _log.cpython-311.pyc │ │ │ │ ├── appdirs.cpython-311.pyc │ │ │ │ ├── compat.cpython-311.pyc │ │ │ │ ├── compatibility_tags.cpython-311.pyc │ │ │ │ ├── datetime.cpython-311.pyc │ │ │ │ ├── deprecation.cpython-311.pyc │ │ │ │ ├── direct_url_helpers.cpython-311.pyc │ │ │ │ ├── egg_link.cpython-311.pyc │ │ │ │ ├── encoding.cpython-311.pyc │ │ │ │ ├── entrypoints.cpython-311.pyc │ │ │ │ ├── filesystem.cpython-311.pyc │ │ │ │ ├── filetypes.cpython-311.pyc │ │ │ │ ├── glibc.cpython-311.pyc │ │ │ │ ├── hashes.cpython-311.pyc │ │ │ │ ├── logging.cpython-311.pyc │ │ │ │ ├── misc.cpython-311.pyc │ │ │ │ ├── packaging.cpython-311.pyc │ │ │ │ ├── retry.cpython-311.pyc │ │ │ │ ├── setuptools_build.cpython-311.pyc │ │ │ │ ├── subprocess.cpython-311.pyc │ │ │ │ ├── temp_dir.cpython-311.pyc │ │ │ │ ├── unpacking.cpython-311.pyc │ │ │ │ ├── urls.cpython-311.pyc │ │ │ │ ├── virtualenv.cpython-311.pyc │ │ │ │ └── wheel.cpython-311.pyc │ │ │ ├── _jaraco_text.py │ │ │ ├── _log.py │ │ │ ├── appdirs.py │ │ │ ├── compat.py │ │ │ ├── compatibility_tags.py │ │ │ ├── datetime.py │ │ │ ├── deprecation.py │ │ │ ├── direct_url_helpers.py │ │ │ ├── egg_link.py │ │ │ ├── encoding.py │ │ │ ├── entrypoints.py │ │ │ ├── filesystem.py │ │ │ ├── filetypes.py │ │ │ ├── glibc.py │ │ │ ├── hashes.py │ │ │ ├── logging.py │ │ │ ├── misc.py │ │ │ ├── packaging.py │ │ │ ├── retry.py │ │ │ ├── setuptools_build.py │ │ │ ├── subprocess.py │ │ │ ├── temp_dir.py │ │ │ ├── unpacking.py │ │ │ ├── urls.py │ │ │ ├── virtualenv.py │ │ │ └── wheel.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── bazaar.cpython-311.pyc │ │ │ │ ├── git.cpython-311.pyc │ │ │ │ ├── mercurial.cpython-311.pyc │ │ │ │ ├── subversion.cpython-311.pyc │ │ │ │ └── versioncontrol.cpython-311.pyc │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ ├── subversion.py │ │ │ └── versioncontrol.py │ │ └── wheel_builder.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── typing_extensions.cpython-311.pyc │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _cmd.cpython-311.pyc │ │ │ │ ├── adapter.cpython-311.pyc │ │ │ │ ├── cache.cpython-311.pyc │ │ │ │ ├── controller.cpython-311.pyc │ │ │ │ ├── filewrapper.cpython-311.pyc │ │ │ │ ├── heuristics.cpython-311.pyc │ │ │ │ ├── serialize.cpython-311.pyc │ │ │ │ └── wrapper.cpython-311.pyc │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── file_cache.cpython-311.pyc │ │ │ │ │ └── redis_cache.cpython-311.pyc │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── py.typed │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── __main__.cpython-311.pyc │ │ │ │ └── core.cpython-311.pyc │ │ │ ├── cacert.pem │ │ │ ├── core.py │ │ │ └── py.typed │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── compat.cpython-311.pyc │ │ │ │ ├── database.cpython-311.pyc │ │ │ │ ├── index.cpython-311.pyc │ │ │ │ ├── locators.cpython-311.pyc │ │ │ │ ├── manifest.cpython-311.pyc │ │ │ │ ├── markers.cpython-311.pyc │ │ │ │ ├── metadata.cpython-311.pyc │ │ │ │ ├── resources.cpython-311.pyc │ │ │ │ ├── scripts.cpython-311.pyc │ │ │ │ ├── util.cpython-311.pyc │ │ │ │ ├── version.cpython-311.pyc │ │ │ │ └── wheel.cpython-311.pyc │ │ │ ├── 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 │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── __main__.cpython-311.pyc │ │ │ │ └── distro.cpython-311.pyc │ │ │ ├── distro.py │ │ │ └── py.typed │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── codec.cpython-311.pyc │ │ │ │ ├── compat.cpython-311.pyc │ │ │ │ ├── core.cpython-311.pyc │ │ │ │ ├── idnadata.cpython-311.pyc │ │ │ │ ├── intranges.cpython-311.pyc │ │ │ │ ├── package_data.cpython-311.pyc │ │ │ │ └── uts46data.cpython-311.pyc │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ ├── py.typed │ │ │ └── uts46data.py │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── exceptions.cpython-311.pyc │ │ │ │ ├── ext.cpython-311.pyc │ │ │ │ └── fallback.cpython-311.pyc │ │ │ ├── exceptions.py │ │ │ ├── ext.py │ │ │ └── fallback.py │ │ ├── packaging │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _elffile.cpython-311.pyc │ │ │ │ ├── _manylinux.cpython-311.pyc │ │ │ │ ├── _musllinux.cpython-311.pyc │ │ │ │ ├── _parser.cpython-311.pyc │ │ │ │ ├── _structures.cpython-311.pyc │ │ │ │ ├── _tokenizer.cpython-311.pyc │ │ │ │ ├── markers.cpython-311.pyc │ │ │ │ ├── metadata.cpython-311.pyc │ │ │ │ ├── requirements.cpython-311.pyc │ │ │ │ ├── specifiers.cpython-311.pyc │ │ │ │ ├── tags.cpython-311.pyc │ │ │ │ ├── utils.cpython-311.pyc │ │ │ │ └── version.cpython-311.pyc │ │ │ ├── _elffile.py │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _parser.py │ │ │ ├── _structures.py │ │ │ ├── _tokenizer.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── py.typed │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-311.pyc │ │ ├── platformdirs │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── __main__.cpython-311.pyc │ │ │ │ ├── android.cpython-311.pyc │ │ │ │ ├── api.cpython-311.pyc │ │ │ │ ├── macos.cpython-311.pyc │ │ │ │ ├── unix.cpython-311.pyc │ │ │ │ ├── version.cpython-311.pyc │ │ │ │ └── windows.cpython-311.pyc │ │ │ ├── android.py │ │ │ ├── api.py │ │ │ ├── macos.py │ │ │ ├── py.typed │ │ │ ├── unix.py │ │ │ ├── version.py │ │ │ └── windows.py │ │ ├── pygments │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── __main__.cpython-311.pyc │ │ │ │ ├── cmdline.cpython-311.pyc │ │ │ │ ├── console.cpython-311.pyc │ │ │ │ ├── filter.cpython-311.pyc │ │ │ │ ├── formatter.cpython-311.pyc │ │ │ │ ├── lexer.cpython-311.pyc │ │ │ │ ├── modeline.cpython-311.pyc │ │ │ │ ├── plugin.cpython-311.pyc │ │ │ │ ├── regexopt.cpython-311.pyc │ │ │ │ ├── scanner.cpython-311.pyc │ │ │ │ ├── sphinxext.cpython-311.pyc │ │ │ │ ├── style.cpython-311.pyc │ │ │ │ ├── token.cpython-311.pyc │ │ │ │ ├── unistring.cpython-311.pyc │ │ │ │ └── util.cpython-311.pyc │ │ │ ├── cmdline.py │ │ │ ├── console.py │ │ │ ├── filter.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ ├── formatter.py │ │ │ ├── formatters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── _mapping.cpython-311.pyc │ │ │ │ │ ├── bbcode.cpython-311.pyc │ │ │ │ │ ├── groff.cpython-311.pyc │ │ │ │ │ ├── html.cpython-311.pyc │ │ │ │ │ ├── img.cpython-311.pyc │ │ │ │ │ ├── irc.cpython-311.pyc │ │ │ │ │ ├── latex.cpython-311.pyc │ │ │ │ │ ├── other.cpython-311.pyc │ │ │ │ │ ├── pangomarkup.cpython-311.pyc │ │ │ │ │ ├── rtf.cpython-311.pyc │ │ │ │ │ ├── svg.cpython-311.pyc │ │ │ │ │ ├── terminal.cpython-311.pyc │ │ │ │ │ └── terminal256.cpython-311.pyc │ │ │ │ ├── _mapping.py │ │ │ │ ├── bbcode.py │ │ │ │ ├── groff.py │ │ │ │ ├── html.py │ │ │ │ ├── img.py │ │ │ │ ├── irc.py │ │ │ │ ├── latex.py │ │ │ │ ├── other.py │ │ │ │ ├── pangomarkup.py │ │ │ │ ├── rtf.py │ │ │ │ ├── svg.py │ │ │ │ ├── terminal.py │ │ │ │ └── terminal256.py │ │ │ ├── lexer.py │ │ │ ├── lexers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── _mapping.cpython-311.pyc │ │ │ │ │ └── python.cpython-311.pyc │ │ │ │ ├── _mapping.py │ │ │ │ └── python.py │ │ │ ├── modeline.py │ │ │ ├── plugin.py │ │ │ ├── regexopt.py │ │ │ ├── scanner.py │ │ │ ├── sphinxext.py │ │ │ ├── style.py │ │ │ ├── styles │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ └── _mapping.cpython-311.pyc │ │ │ │ └── _mapping.py │ │ │ ├── token.py │ │ │ ├── unistring.py │ │ │ └── util.py │ │ ├── pyproject_hooks │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _compat.cpython-311.pyc │ │ │ │ └── _impl.cpython-311.pyc │ │ │ ├── _compat.py │ │ │ ├── _impl.py │ │ │ └── _in_process │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── _in_process.cpython-311.pyc │ │ │ │ └── _in_process.py │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── __version__.cpython-311.pyc │ │ │ │ ├── _internal_utils.cpython-311.pyc │ │ │ │ ├── adapters.cpython-311.pyc │ │ │ │ ├── api.cpython-311.pyc │ │ │ │ ├── auth.cpython-311.pyc │ │ │ │ ├── certs.cpython-311.pyc │ │ │ │ ├── compat.cpython-311.pyc │ │ │ │ ├── cookies.cpython-311.pyc │ │ │ │ ├── exceptions.cpython-311.pyc │ │ │ │ ├── help.cpython-311.pyc │ │ │ │ ├── hooks.cpython-311.pyc │ │ │ │ ├── models.cpython-311.pyc │ │ │ │ ├── packages.cpython-311.pyc │ │ │ │ ├── sessions.cpython-311.pyc │ │ │ │ ├── status_codes.cpython-311.pyc │ │ │ │ ├── structures.cpython-311.pyc │ │ │ │ └── utils.cpython-311.pyc │ │ │ ├── __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 │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── providers.cpython-311.pyc │ │ │ │ ├── reporters.cpython-311.pyc │ │ │ │ ├── resolvers.cpython-311.pyc │ │ │ │ └── structs.cpython-311.pyc │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ └── collections_abc.cpython-311.pyc │ │ │ │ └── collections_abc.py │ │ │ ├── providers.py │ │ │ ├── py.typed │ │ │ ├── reporters.py │ │ │ ├── resolvers.py │ │ │ └── structs.py │ │ ├── rich │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── __main__.cpython-311.pyc │ │ │ │ ├── _cell_widths.cpython-311.pyc │ │ │ │ ├── _emoji_codes.cpython-311.pyc │ │ │ │ ├── _emoji_replace.cpython-311.pyc │ │ │ │ ├── _export_format.cpython-311.pyc │ │ │ │ ├── _extension.cpython-311.pyc │ │ │ │ ├── _fileno.cpython-311.pyc │ │ │ │ ├── _inspect.cpython-311.pyc │ │ │ │ ├── _log_render.cpython-311.pyc │ │ │ │ ├── _loop.cpython-311.pyc │ │ │ │ ├── _null_file.cpython-311.pyc │ │ │ │ ├── _palettes.cpython-311.pyc │ │ │ │ ├── _pick.cpython-311.pyc │ │ │ │ ├── _ratio.cpython-311.pyc │ │ │ │ ├── _spinners.cpython-311.pyc │ │ │ │ ├── _stack.cpython-311.pyc │ │ │ │ ├── _timer.cpython-311.pyc │ │ │ │ ├── _win32_console.cpython-311.pyc │ │ │ │ ├── _windows.cpython-311.pyc │ │ │ │ ├── _windows_renderer.cpython-311.pyc │ │ │ │ ├── _wrap.cpython-311.pyc │ │ │ │ ├── abc.cpython-311.pyc │ │ │ │ ├── align.cpython-311.pyc │ │ │ │ ├── ansi.cpython-311.pyc │ │ │ │ ├── bar.cpython-311.pyc │ │ │ │ ├── box.cpython-311.pyc │ │ │ │ ├── cells.cpython-311.pyc │ │ │ │ ├── color.cpython-311.pyc │ │ │ │ ├── color_triplet.cpython-311.pyc │ │ │ │ ├── columns.cpython-311.pyc │ │ │ │ ├── console.cpython-311.pyc │ │ │ │ ├── constrain.cpython-311.pyc │ │ │ │ ├── containers.cpython-311.pyc │ │ │ │ ├── control.cpython-311.pyc │ │ │ │ ├── default_styles.cpython-311.pyc │ │ │ │ ├── diagnose.cpython-311.pyc │ │ │ │ ├── emoji.cpython-311.pyc │ │ │ │ ├── errors.cpython-311.pyc │ │ │ │ ├── file_proxy.cpython-311.pyc │ │ │ │ ├── filesize.cpython-311.pyc │ │ │ │ ├── highlighter.cpython-311.pyc │ │ │ │ ├── json.cpython-311.pyc │ │ │ │ ├── jupyter.cpython-311.pyc │ │ │ │ ├── layout.cpython-311.pyc │ │ │ │ ├── live.cpython-311.pyc │ │ │ │ ├── live_render.cpython-311.pyc │ │ │ │ ├── logging.cpython-311.pyc │ │ │ │ ├── markup.cpython-311.pyc │ │ │ │ ├── measure.cpython-311.pyc │ │ │ │ ├── padding.cpython-311.pyc │ │ │ │ ├── pager.cpython-311.pyc │ │ │ │ ├── palette.cpython-311.pyc │ │ │ │ ├── panel.cpython-311.pyc │ │ │ │ ├── pretty.cpython-311.pyc │ │ │ │ ├── progress.cpython-311.pyc │ │ │ │ ├── progress_bar.cpython-311.pyc │ │ │ │ ├── prompt.cpython-311.pyc │ │ │ │ ├── protocol.cpython-311.pyc │ │ │ │ ├── region.cpython-311.pyc │ │ │ │ ├── repr.cpython-311.pyc │ │ │ │ ├── rule.cpython-311.pyc │ │ │ │ ├── scope.cpython-311.pyc │ │ │ │ ├── screen.cpython-311.pyc │ │ │ │ ├── segment.cpython-311.pyc │ │ │ │ ├── spinner.cpython-311.pyc │ │ │ │ ├── status.cpython-311.pyc │ │ │ │ ├── style.cpython-311.pyc │ │ │ │ ├── styled.cpython-311.pyc │ │ │ │ ├── syntax.cpython-311.pyc │ │ │ │ ├── table.cpython-311.pyc │ │ │ │ ├── terminal_theme.cpython-311.pyc │ │ │ │ ├── text.cpython-311.pyc │ │ │ │ ├── theme.cpython-311.pyc │ │ │ │ ├── themes.cpython-311.pyc │ │ │ │ ├── traceback.cpython-311.pyc │ │ │ │ └── tree.cpython-311.pyc │ │ │ ├── _cell_widths.py │ │ │ ├── _emoji_codes.py │ │ │ ├── _emoji_replace.py │ │ │ ├── _export_format.py │ │ │ ├── _extension.py │ │ │ ├── _fileno.py │ │ │ ├── _inspect.py │ │ │ ├── _log_render.py │ │ │ ├── _loop.py │ │ │ ├── _null_file.py │ │ │ ├── _palettes.py │ │ │ ├── _pick.py │ │ │ ├── _ratio.py │ │ │ ├── _spinners.py │ │ │ ├── _stack.py │ │ │ ├── _timer.py │ │ │ ├── _win32_console.py │ │ │ ├── _windows.py │ │ │ ├── _windows_renderer.py │ │ │ ├── _wrap.py │ │ │ ├── abc.py │ │ │ ├── align.py │ │ │ ├── ansi.py │ │ │ ├── bar.py │ │ │ ├── box.py │ │ │ ├── cells.py │ │ │ ├── color.py │ │ │ ├── color_triplet.py │ │ │ ├── columns.py │ │ │ ├── console.py │ │ │ ├── constrain.py │ │ │ ├── containers.py │ │ │ ├── control.py │ │ │ ├── default_styles.py │ │ │ ├── diagnose.py │ │ │ ├── emoji.py │ │ │ ├── errors.py │ │ │ ├── file_proxy.py │ │ │ ├── filesize.py │ │ │ ├── highlighter.py │ │ │ ├── json.py │ │ │ ├── jupyter.py │ │ │ ├── layout.py │ │ │ ├── live.py │ │ │ ├── live_render.py │ │ │ ├── logging.py │ │ │ ├── markup.py │ │ │ ├── measure.py │ │ │ ├── padding.py │ │ │ ├── pager.py │ │ │ ├── palette.py │ │ │ ├── panel.py │ │ │ ├── pretty.py │ │ │ ├── progress.py │ │ │ ├── progress_bar.py │ │ │ ├── prompt.py │ │ │ ├── protocol.py │ │ │ ├── py.typed │ │ │ ├── region.py │ │ │ ├── repr.py │ │ │ ├── rule.py │ │ │ ├── scope.py │ │ │ ├── screen.py │ │ │ ├── segment.py │ │ │ ├── spinner.py │ │ │ ├── status.py │ │ │ ├── style.py │ │ │ ├── styled.py │ │ │ ├── syntax.py │ │ │ ├── table.py │ │ │ ├── terminal_theme.py │ │ │ ├── text.py │ │ │ ├── theme.py │ │ │ ├── themes.py │ │ │ ├── traceback.py │ │ │ └── tree.py │ │ ├── tomli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _parser.cpython-311.pyc │ │ │ │ ├── _re.cpython-311.pyc │ │ │ │ └── _types.cpython-311.pyc │ │ │ ├── _parser.py │ │ │ ├── _re.py │ │ │ ├── _types.py │ │ │ └── py.typed │ │ ├── truststore │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _api.cpython-311.pyc │ │ │ │ ├── _macos.cpython-311.pyc │ │ │ │ ├── _openssl.cpython-311.pyc │ │ │ │ ├── _ssl_constants.cpython-311.pyc │ │ │ │ └── _windows.cpython-311.pyc │ │ │ ├── _api.py │ │ │ ├── _macos.py │ │ │ ├── _openssl.py │ │ │ ├── _ssl_constants.py │ │ │ ├── _windows.py │ │ │ └── py.typed │ │ ├── typing_extensions.py │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _collections.cpython-311.pyc │ │ │ │ ├── _version.cpython-311.pyc │ │ │ │ ├── connection.cpython-311.pyc │ │ │ │ ├── connectionpool.cpython-311.pyc │ │ │ │ ├── exceptions.cpython-311.pyc │ │ │ │ ├── fields.cpython-311.pyc │ │ │ │ ├── filepost.cpython-311.pyc │ │ │ │ ├── poolmanager.cpython-311.pyc │ │ │ │ ├── request.cpython-311.pyc │ │ │ │ └── response.cpython-311.pyc │ │ │ ├── _collections.py │ │ │ ├── _version.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── _appengine_environ.cpython-311.pyc │ │ │ │ │ ├── appengine.cpython-311.pyc │ │ │ │ │ ├── ntlmpool.cpython-311.pyc │ │ │ │ │ ├── pyopenssl.cpython-311.pyc │ │ │ │ │ ├── securetransport.cpython-311.pyc │ │ │ │ │ └── socks.cpython-311.pyc │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ │ ├── bindings.cpython-311.pyc │ │ │ │ │ │ └── low_level.cpython-311.pyc │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ └── six.cpython-311.pyc │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ │ ├── makefile.cpython-311.pyc │ │ │ │ │ │ └── weakref_finalize.cpython-311.pyc │ │ │ │ │ ├── makefile.py │ │ │ │ │ └── weakref_finalize.py │ │ │ │ └── six.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── connection.cpython-311.pyc │ │ │ │ ├── proxy.cpython-311.pyc │ │ │ │ ├── queue.cpython-311.pyc │ │ │ │ ├── request.cpython-311.pyc │ │ │ │ ├── response.cpython-311.pyc │ │ │ │ ├── retry.cpython-311.pyc │ │ │ │ ├── ssl_.cpython-311.pyc │ │ │ │ ├── ssl_match_hostname.cpython-311.pyc │ │ │ │ ├── ssltransport.cpython-311.pyc │ │ │ │ ├── timeout.cpython-311.pyc │ │ │ │ ├── url.cpython-311.pyc │ │ │ │ └── wait.cpython-311.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── proxy.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── ssl_match_hostname.py │ │ │ │ ├── ssltransport.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ └── vendor.txt │ └── py.typed │ ├── pkg_resources │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-311.pyc │ ├── api_tests.txt │ ├── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── test_find_distributions.cpython-311.pyc │ │ ├── test_integration_zope_interface.cpython-311.pyc │ │ ├── test_markers.cpython-311.pyc │ │ ├── test_pkg_resources.cpython-311.pyc │ │ ├── test_resources.cpython-311.pyc │ │ └── test_working_set.cpython-311.pyc │ │ ├── data │ │ ├── my-test-package-source │ │ │ ├── __pycache__ │ │ │ │ └── setup.cpython-311.pyc │ │ │ ├── setup.cfg │ │ │ └── setup.py │ │ ├── my-test-package-zip │ │ │ └── my-test-package.zip │ │ ├── my-test-package_unpacked-egg │ │ │ └── my_test_package-1.0-py3.7.egg │ │ │ │ └── EGG-INFO │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ └── my-test-package_zipped-egg │ │ │ └── my_test_package-1.0-py3.7.egg │ │ ├── test_find_distributions.py │ │ ├── test_integration_zope_interface.py │ │ ├── test_markers.py │ │ ├── test_pkg_resources.py │ │ ├── test_resources.py │ │ └── test_working_set.py │ ├── pluggy-1.5.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── pluggy │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _callers.cpython-311.pyc │ │ ├── _hooks.cpython-311.pyc │ │ ├── _manager.cpython-311.pyc │ │ ├── _result.cpython-311.pyc │ │ ├── _tracing.cpython-311.pyc │ │ ├── _version.cpython-311.pyc │ │ └── _warnings.cpython-311.pyc │ ├── _callers.py │ ├── _hooks.py │ ├── _manager.py │ ├── _result.py │ ├── _tracing.py │ ├── _version.py │ ├── _warnings.py │ └── py.typed │ ├── pyproject_hooks-1.2.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ └── WHEEL │ ├── pyproject_hooks │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ └── _impl.cpython-311.pyc │ ├── _impl.py │ ├── _in_process │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── _in_process.cpython-311.pyc │ │ └── _in_process.py │ └── py.typed │ ├── setuptools-74.1.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── setuptools │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _core_metadata.cpython-311.pyc │ │ ├── _entry_points.cpython-311.pyc │ │ ├── _imp.cpython-311.pyc │ │ ├── _importlib.cpython-311.pyc │ │ ├── _itertools.cpython-311.pyc │ │ ├── _normalization.cpython-311.pyc │ │ ├── _path.cpython-311.pyc │ │ ├── _reqs.cpython-311.pyc │ │ ├── archive_util.cpython-311.pyc │ │ ├── build_meta.cpython-311.pyc │ │ ├── depends.cpython-311.pyc │ │ ├── discovery.cpython-311.pyc │ │ ├── dist.cpython-311.pyc │ │ ├── errors.cpython-311.pyc │ │ ├── extension.cpython-311.pyc │ │ ├── glob.cpython-311.pyc │ │ ├── installer.cpython-311.pyc │ │ ├── launch.cpython-311.pyc │ │ ├── logging.cpython-311.pyc │ │ ├── modified.cpython-311.pyc │ │ ├── monkey.cpython-311.pyc │ │ ├── msvc.cpython-311.pyc │ │ ├── namespaces.cpython-311.pyc │ │ ├── package_index.cpython-311.pyc │ │ ├── sandbox.cpython-311.pyc │ │ ├── unicode_utils.cpython-311.pyc │ │ ├── version.cpython-311.pyc │ │ ├── warnings.cpython-311.pyc │ │ ├── wheel.cpython-311.pyc │ │ └── windows_support.cpython-311.pyc │ ├── _core_metadata.py │ ├── _distutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── _collections.cpython-311.pyc │ │ │ ├── _functools.cpython-311.pyc │ │ │ ├── _itertools.cpython-311.pyc │ │ │ ├── _log.cpython-311.pyc │ │ │ ├── _macos_compat.cpython-311.pyc │ │ │ ├── _modified.cpython-311.pyc │ │ │ ├── _msvccompiler.cpython-311.pyc │ │ │ ├── archive_util.cpython-311.pyc │ │ │ ├── bcppcompiler.cpython-311.pyc │ │ │ ├── ccompiler.cpython-311.pyc │ │ │ ├── cmd.cpython-311.pyc │ │ │ ├── config.cpython-311.pyc │ │ │ ├── core.cpython-311.pyc │ │ │ ├── cygwinccompiler.cpython-311.pyc │ │ │ ├── debug.cpython-311.pyc │ │ │ ├── dep_util.cpython-311.pyc │ │ │ ├── dir_util.cpython-311.pyc │ │ │ ├── dist.cpython-311.pyc │ │ │ ├── errors.cpython-311.pyc │ │ │ ├── extension.cpython-311.pyc │ │ │ ├── fancy_getopt.cpython-311.pyc │ │ │ ├── file_util.cpython-311.pyc │ │ │ ├── filelist.cpython-311.pyc │ │ │ ├── log.cpython-311.pyc │ │ │ ├── spawn.cpython-311.pyc │ │ │ ├── sysconfig.cpython-311.pyc │ │ │ ├── text_file.cpython-311.pyc │ │ │ ├── unixccompiler.cpython-311.pyc │ │ │ ├── util.cpython-311.pyc │ │ │ ├── version.cpython-311.pyc │ │ │ ├── versionpredicate.cpython-311.pyc │ │ │ └── zosccompiler.cpython-311.pyc │ │ ├── _collections.py │ │ ├── _functools.py │ │ ├── _itertools.py │ │ ├── _log.py │ │ ├── _macos_compat.py │ │ ├── _modified.py │ │ ├── _msvccompiler.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── cmd.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _framework_compat.cpython-311.pyc │ │ │ │ ├── bdist.cpython-311.pyc │ │ │ │ ├── bdist_dumb.cpython-311.pyc │ │ │ │ ├── bdist_rpm.cpython-311.pyc │ │ │ │ ├── build.cpython-311.pyc │ │ │ │ ├── build_clib.cpython-311.pyc │ │ │ │ ├── build_ext.cpython-311.pyc │ │ │ │ ├── build_py.cpython-311.pyc │ │ │ │ ├── build_scripts.cpython-311.pyc │ │ │ │ ├── check.cpython-311.pyc │ │ │ │ ├── clean.cpython-311.pyc │ │ │ │ ├── config.cpython-311.pyc │ │ │ │ ├── install.cpython-311.pyc │ │ │ │ ├── install_data.cpython-311.pyc │ │ │ │ ├── install_egg_info.cpython-311.pyc │ │ │ │ ├── install_headers.cpython-311.pyc │ │ │ │ ├── install_lib.cpython-311.pyc │ │ │ │ ├── install_scripts.cpython-311.pyc │ │ │ │ ├── register.cpython-311.pyc │ │ │ │ ├── sdist.cpython-311.pyc │ │ │ │ └── upload.cpython-311.pyc │ │ │ ├── _framework_compat.py │ │ │ ├── bdist.py │ │ │ ├── bdist_dumb.py │ │ │ ├── bdist_rpm.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 │ │ │ ├── register.py │ │ │ ├── sdist.py │ │ │ └── upload.py │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── py38.cpython-311.pyc │ │ │ │ └── py39.cpython-311.pyc │ │ │ ├── py38.py │ │ │ └── py39.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 │ │ ├── spawn.py │ │ ├── sysconfig.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── support.cpython-311.pyc │ │ │ │ ├── test_archive_util.cpython-311.pyc │ │ │ │ ├── test_bdist.cpython-311.pyc │ │ │ │ ├── test_bdist_dumb.cpython-311.pyc │ │ │ │ ├── test_bdist_rpm.cpython-311.pyc │ │ │ │ ├── test_build.cpython-311.pyc │ │ │ │ ├── test_build_clib.cpython-311.pyc │ │ │ │ ├── test_build_ext.cpython-311.pyc │ │ │ │ ├── test_build_py.cpython-311.pyc │ │ │ │ ├── test_build_scripts.cpython-311.pyc │ │ │ │ ├── test_ccompiler.cpython-311.pyc │ │ │ │ ├── test_check.cpython-311.pyc │ │ │ │ ├── test_clean.cpython-311.pyc │ │ │ │ ├── test_cmd.cpython-311.pyc │ │ │ │ ├── test_config.cpython-311.pyc │ │ │ │ ├── test_config_cmd.cpython-311.pyc │ │ │ │ ├── test_core.cpython-311.pyc │ │ │ │ ├── test_cygwinccompiler.cpython-311.pyc │ │ │ │ ├── test_dir_util.cpython-311.pyc │ │ │ │ ├── test_dist.cpython-311.pyc │ │ │ │ ├── test_extension.cpython-311.pyc │ │ │ │ ├── test_file_util.cpython-311.pyc │ │ │ │ ├── test_filelist.cpython-311.pyc │ │ │ │ ├── test_install.cpython-311.pyc │ │ │ │ ├── test_install_data.cpython-311.pyc │ │ │ │ ├── test_install_headers.cpython-311.pyc │ │ │ │ ├── test_install_lib.cpython-311.pyc │ │ │ │ ├── test_install_scripts.cpython-311.pyc │ │ │ │ ├── test_log.cpython-311.pyc │ │ │ │ ├── test_mingwccompiler.cpython-311.pyc │ │ │ │ ├── test_modified.cpython-311.pyc │ │ │ │ ├── test_msvccompiler.cpython-311.pyc │ │ │ │ ├── test_register.cpython-311.pyc │ │ │ │ ├── test_sdist.cpython-311.pyc │ │ │ │ ├── test_spawn.cpython-311.pyc │ │ │ │ ├── test_sysconfig.cpython-311.pyc │ │ │ │ ├── test_text_file.cpython-311.pyc │ │ │ │ ├── test_unixccompiler.cpython-311.pyc │ │ │ │ ├── test_upload.cpython-311.pyc │ │ │ │ ├── test_util.cpython-311.pyc │ │ │ │ ├── test_version.cpython-311.pyc │ │ │ │ ├── test_versionpredicate.cpython-311.pyc │ │ │ │ └── unix_compat.cpython-311.pyc │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ └── py38.cpython-311.pyc │ │ │ │ └── py38.py │ │ │ ├── support.py │ │ │ ├── test_archive_util.py │ │ │ ├── test_bdist.py │ │ │ ├── test_bdist_dumb.py │ │ │ ├── test_bdist_rpm.py │ │ │ ├── test_build.py │ │ │ ├── test_build_clib.py │ │ │ ├── test_build_ext.py │ │ │ ├── test_build_py.py │ │ │ ├── test_build_scripts.py │ │ │ ├── test_ccompiler.py │ │ │ ├── test_check.py │ │ │ ├── test_clean.py │ │ │ ├── test_cmd.py │ │ │ ├── test_config.py │ │ │ ├── test_config_cmd.py │ │ │ ├── test_core.py │ │ │ ├── test_cygwinccompiler.py │ │ │ ├── test_dir_util.py │ │ │ ├── test_dist.py │ │ │ ├── test_extension.py │ │ │ ├── test_file_util.py │ │ │ ├── test_filelist.py │ │ │ ├── test_install.py │ │ │ ├── test_install_data.py │ │ │ ├── test_install_headers.py │ │ │ ├── test_install_lib.py │ │ │ ├── test_install_scripts.py │ │ │ ├── test_log.py │ │ │ ├── test_mingwccompiler.py │ │ │ ├── test_modified.py │ │ │ ├── test_msvccompiler.py │ │ │ ├── test_register.py │ │ │ ├── test_sdist.py │ │ │ ├── test_spawn.py │ │ │ ├── test_sysconfig.py │ │ │ ├── test_text_file.py │ │ │ ├── test_unixccompiler.py │ │ │ ├── test_upload.py │ │ │ ├── test_util.py │ │ │ ├── test_version.py │ │ │ ├── test_versionpredicate.py │ │ │ └── unix_compat.py │ │ ├── text_file.py │ │ ├── unixccompiler.py │ │ ├── util.py │ │ ├── version.py │ │ ├── versionpredicate.py │ │ └── zosccompiler.py │ ├── _entry_points.py │ ├── _imp.py │ ├── _importlib.py │ ├── _itertools.py │ ├── _normalization.py │ ├── _path.py │ ├── _reqs.py │ ├── _vendor │ │ ├── __pycache__ │ │ │ └── typing_extensions.cpython-311.pyc │ │ ├── autocommand-2.2.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── autocommand │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── autoasync.cpython-311.pyc │ │ │ │ ├── autocommand.cpython-311.pyc │ │ │ │ ├── automain.cpython-311.pyc │ │ │ │ ├── autoparse.cpython-311.pyc │ │ │ │ └── errors.cpython-311.pyc │ │ │ ├── autoasync.py │ │ │ ├── autocommand.py │ │ │ ├── automain.py │ │ │ ├── autoparse.py │ │ │ └── errors.py │ │ ├── backports.tarfile-1.2.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── backports │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ └── tarfile │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── __main__.cpython-311.pyc │ │ │ │ └── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── py38.cpython-311.pyc │ │ │ │ └── py38.py │ │ ├── importlib_metadata-8.0.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── importlib_metadata │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _adapters.cpython-311.pyc │ │ │ │ ├── _collections.cpython-311.pyc │ │ │ │ ├── _compat.cpython-311.pyc │ │ │ │ ├── _functools.cpython-311.pyc │ │ │ │ ├── _itertools.cpython-311.pyc │ │ │ │ ├── _meta.cpython-311.pyc │ │ │ │ ├── _text.cpython-311.pyc │ │ │ │ └── diagnose.cpython-311.pyc │ │ │ ├── _adapters.py │ │ │ ├── _collections.py │ │ │ ├── _compat.py │ │ │ ├── _functools.py │ │ │ ├── _itertools.py │ │ │ ├── _meta.py │ │ │ ├── _text.py │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── py311.cpython-311.pyc │ │ │ │ │ └── py39.cpython-311.pyc │ │ │ │ ├── py311.py │ │ │ │ └── py39.py │ │ │ ├── diagnose.py │ │ │ └── py.typed │ │ ├── importlib_resources-6.4.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── importlib_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _adapters.cpython-311.pyc │ │ │ │ ├── _common.cpython-311.pyc │ │ │ │ ├── _itertools.cpython-311.pyc │ │ │ │ ├── abc.cpython-311.pyc │ │ │ │ ├── functional.cpython-311.pyc │ │ │ │ ├── readers.cpython-311.pyc │ │ │ │ └── simple.cpython-311.pyc │ │ │ ├── _adapters.py │ │ │ ├── _common.py │ │ │ ├── _itertools.py │ │ │ ├── abc.py │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── py38.cpython-311.pyc │ │ │ │ │ └── py39.cpython-311.pyc │ │ │ │ ├── py38.py │ │ │ │ └── py39.py │ │ │ ├── functional.py │ │ │ ├── future │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ └── adapters.cpython-311.pyc │ │ │ │ └── adapters.py │ │ │ ├── py.typed │ │ │ ├── readers.py │ │ │ ├── simple.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _path.cpython-311.pyc │ │ │ │ ├── test_compatibilty_files.cpython-311.pyc │ │ │ │ ├── test_contents.cpython-311.pyc │ │ │ │ ├── test_custom.cpython-311.pyc │ │ │ │ ├── test_files.cpython-311.pyc │ │ │ │ ├── test_functional.cpython-311.pyc │ │ │ │ ├── test_open.cpython-311.pyc │ │ │ │ ├── test_path.cpython-311.pyc │ │ │ │ ├── test_read.cpython-311.pyc │ │ │ │ ├── test_reader.cpython-311.pyc │ │ │ │ ├── test_resource.cpython-311.pyc │ │ │ │ ├── util.cpython-311.pyc │ │ │ │ └── zip.cpython-311.pyc │ │ │ │ ├── _path.py │ │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── py312.cpython-311.pyc │ │ │ │ │ └── py39.cpython-311.pyc │ │ │ │ ├── py312.py │ │ │ │ └── py39.py │ │ │ │ ├── data01 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ │ ├── binary.file │ │ │ │ ├── subdirectory │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ │ │ └── binary.file │ │ │ │ ├── utf-16.file │ │ │ │ └── utf-8.file │ │ │ │ ├── data02 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ │ ├── one │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ │ │ └── resource1.txt │ │ │ │ ├── subdirectory │ │ │ │ │ └── subsubdir │ │ │ │ │ │ └── resource.txt │ │ │ │ └── two │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ │ │ └── resource2.txt │ │ │ │ ├── namespacedata01 │ │ │ │ ├── binary.file │ │ │ │ ├── subdirectory │ │ │ │ │ └── binary.file │ │ │ │ ├── utf-16.file │ │ │ │ └── utf-8.file │ │ │ │ ├── test_compatibilty_files.py │ │ │ │ ├── test_contents.py │ │ │ │ ├── test_custom.py │ │ │ │ ├── test_files.py │ │ │ │ ├── test_functional.py │ │ │ │ ├── test_open.py │ │ │ │ ├── test_path.py │ │ │ │ ├── test_read.py │ │ │ │ ├── test_reader.py │ │ │ │ ├── test_resource.py │ │ │ │ ├── util.py │ │ │ │ └── zip.py │ │ ├── inflect-7.3.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── inflect │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ └── py38.cpython-311.pyc │ │ │ │ └── py38.py │ │ │ └── py.typed │ │ ├── jaraco.context-5.3.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── jaraco.functools-4.0.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── jaraco.text-3.12.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── jaraco │ │ │ ├── __pycache__ │ │ │ │ └── context.cpython-311.pyc │ │ │ ├── context.py │ │ │ ├── functools │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyi │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ │ └── py.typed │ │ │ └── text │ │ │ │ ├── Lorem ipsum.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── layouts.cpython-311.pyc │ │ │ │ ├── show-newlines.cpython-311.pyc │ │ │ │ ├── strip-prefix.cpython-311.pyc │ │ │ │ ├── to-dvorak.cpython-311.pyc │ │ │ │ └── to-qwerty.cpython-311.pyc │ │ │ │ ├── layouts.py │ │ │ │ ├── show-newlines.py │ │ │ │ ├── strip-prefix.py │ │ │ │ ├── to-dvorak.py │ │ │ │ └── to-qwerty.py │ │ ├── more_itertools-10.3.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ └── WHEEL │ │ ├── more_itertools │ │ │ ├── __init__.py │ │ │ ├── __init__.pyi │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── more.cpython-311.pyc │ │ │ │ └── recipes.cpython-311.pyc │ │ │ ├── more.py │ │ │ ├── more.pyi │ │ │ ├── py.typed │ │ │ ├── recipes.py │ │ │ └── recipes.pyi │ │ ├── packaging-24.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── LICENSE.APACHE │ │ │ ├── LICENSE.BSD │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ └── WHEEL │ │ ├── packaging │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _elffile.cpython-311.pyc │ │ │ │ ├── _manylinux.cpython-311.pyc │ │ │ │ ├── _musllinux.cpython-311.pyc │ │ │ │ ├── _parser.cpython-311.pyc │ │ │ │ ├── _structures.cpython-311.pyc │ │ │ │ ├── _tokenizer.cpython-311.pyc │ │ │ │ ├── markers.cpython-311.pyc │ │ │ │ ├── metadata.cpython-311.pyc │ │ │ │ ├── requirements.cpython-311.pyc │ │ │ │ ├── specifiers.cpython-311.pyc │ │ │ │ ├── tags.cpython-311.pyc │ │ │ │ ├── utils.cpython-311.pyc │ │ │ │ └── version.cpython-311.pyc │ │ │ ├── _elffile.py │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _parser.py │ │ │ ├── _structures.py │ │ │ ├── _tokenizer.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── py.typed │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── platformdirs-4.2.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ └── licenses │ │ │ │ └── LICENSE │ │ ├── platformdirs │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── __main__.cpython-311.pyc │ │ │ │ ├── android.cpython-311.pyc │ │ │ │ ├── api.cpython-311.pyc │ │ │ │ ├── macos.cpython-311.pyc │ │ │ │ ├── unix.cpython-311.pyc │ │ │ │ ├── version.cpython-311.pyc │ │ │ │ └── windows.cpython-311.pyc │ │ │ ├── android.py │ │ │ ├── api.py │ │ │ ├── macos.py │ │ │ ├── py.typed │ │ │ ├── unix.py │ │ │ ├── version.py │ │ │ └── windows.py │ │ ├── ruff.toml │ │ ├── tomli-2.0.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ └── WHEEL │ │ ├── tomli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _parser.cpython-311.pyc │ │ │ │ ├── _re.cpython-311.pyc │ │ │ │ └── _types.cpython-311.pyc │ │ │ ├── _parser.py │ │ │ ├── _re.py │ │ │ ├── _types.py │ │ │ └── py.typed │ │ ├── typeguard-4.3.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ ├── typeguard │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── _checkers.cpython-311.pyc │ │ │ │ ├── _config.cpython-311.pyc │ │ │ │ ├── _decorators.cpython-311.pyc │ │ │ │ ├── _exceptions.cpython-311.pyc │ │ │ │ ├── _functions.cpython-311.pyc │ │ │ │ ├── _importhook.cpython-311.pyc │ │ │ │ ├── _memo.cpython-311.pyc │ │ │ │ ├── _pytest_plugin.cpython-311.pyc │ │ │ │ ├── _suppression.cpython-311.pyc │ │ │ │ ├── _transformer.cpython-311.pyc │ │ │ │ ├── _union_transformer.cpython-311.pyc │ │ │ │ └── _utils.cpython-311.pyc │ │ │ ├── _checkers.py │ │ │ ├── _config.py │ │ │ ├── _decorators.py │ │ │ ├── _exceptions.py │ │ │ ├── _functions.py │ │ │ ├── _importhook.py │ │ │ ├── _memo.py │ │ │ ├── _pytest_plugin.py │ │ │ ├── _suppression.py │ │ │ ├── _transformer.py │ │ │ ├── _union_transformer.py │ │ │ ├── _utils.py │ │ │ └── py.typed │ │ ├── typing_extensions-4.12.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ └── WHEEL │ │ ├── typing_extensions.py │ │ ├── wheel-0.43.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ └── entry_points.txt │ │ ├── wheel │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── __main__.cpython-311.pyc │ │ │ │ ├── _setuptools_logging.cpython-311.pyc │ │ │ │ ├── bdist_wheel.cpython-311.pyc │ │ │ │ ├── macosx_libfile.cpython-311.pyc │ │ │ │ ├── metadata.cpython-311.pyc │ │ │ │ ├── util.cpython-311.pyc │ │ │ │ └── wheelfile.cpython-311.pyc │ │ │ ├── _setuptools_logging.py │ │ │ ├── bdist_wheel.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── convert.cpython-311.pyc │ │ │ │ │ ├── pack.cpython-311.pyc │ │ │ │ │ ├── tags.cpython-311.pyc │ │ │ │ │ └── unpack.cpython-311.pyc │ │ │ │ ├── convert.py │ │ │ │ ├── pack.py │ │ │ │ ├── tags.py │ │ │ │ └── unpack.py │ │ │ ├── macosx_libfile.py │ │ │ ├── metadata.py │ │ │ ├── util.py │ │ │ ├── vendored │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ │ ├── packaging │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ │ ├── _elffile.cpython-311.pyc │ │ │ │ │ │ ├── _manylinux.cpython-311.pyc │ │ │ │ │ │ ├── _musllinux.cpython-311.pyc │ │ │ │ │ │ ├── _parser.cpython-311.pyc │ │ │ │ │ │ ├── _structures.cpython-311.pyc │ │ │ │ │ │ ├── _tokenizer.cpython-311.pyc │ │ │ │ │ │ ├── markers.cpython-311.pyc │ │ │ │ │ │ ├── requirements.cpython-311.pyc │ │ │ │ │ │ ├── specifiers.cpython-311.pyc │ │ │ │ │ │ ├── tags.cpython-311.pyc │ │ │ │ │ │ ├── utils.cpython-311.pyc │ │ │ │ │ │ └── version.cpython-311.pyc │ │ │ │ │ ├── _elffile.py │ │ │ │ │ ├── _manylinux.py │ │ │ │ │ ├── _musllinux.py │ │ │ │ │ ├── _parser.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ └── vendor.txt │ │ │ └── wheelfile.py │ │ ├── zipp-3.19.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ └── zipp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── glob.cpython-311.pyc │ │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── py310.cpython-311.pyc │ │ │ └── py310.py │ │ │ └── glob.py │ ├── archive_util.py │ ├── build_meta.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli-arm64.exe │ ├── cli.exe │ ├── command │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── _requirestxt.cpython-311.pyc │ │ │ ├── alias.cpython-311.pyc │ │ │ ├── bdist_egg.cpython-311.pyc │ │ │ ├── bdist_rpm.cpython-311.pyc │ │ │ ├── bdist_wheel.cpython-311.pyc │ │ │ ├── build.cpython-311.pyc │ │ │ ├── build_clib.cpython-311.pyc │ │ │ ├── build_ext.cpython-311.pyc │ │ │ ├── build_py.cpython-311.pyc │ │ │ ├── develop.cpython-311.pyc │ │ │ ├── dist_info.cpython-311.pyc │ │ │ ├── easy_install.cpython-311.pyc │ │ │ ├── editable_wheel.cpython-311.pyc │ │ │ ├── egg_info.cpython-311.pyc │ │ │ ├── install.cpython-311.pyc │ │ │ ├── install_egg_info.cpython-311.pyc │ │ │ ├── install_lib.cpython-311.pyc │ │ │ ├── install_scripts.cpython-311.pyc │ │ │ ├── register.cpython-311.pyc │ │ │ ├── rotate.cpython-311.pyc │ │ │ ├── saveopts.cpython-311.pyc │ │ │ ├── sdist.cpython-311.pyc │ │ │ ├── setopt.cpython-311.pyc │ │ │ ├── test.cpython-311.pyc │ │ │ ├── upload.cpython-311.pyc │ │ │ └── upload_docs.cpython-311.pyc │ │ ├── _requirestxt.py │ │ ├── alias.py │ │ ├── bdist_egg.py │ │ ├── bdist_rpm.py │ │ ├── bdist_wheel.py │ │ ├── build.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── develop.py │ │ ├── dist_info.py │ │ ├── easy_install.py │ │ ├── editable_wheel.py │ │ ├── egg_info.py │ │ ├── install.py │ │ ├── install_egg_info.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── launcher manifest.xml │ │ ├── register.py │ │ ├── rotate.py │ │ ├── saveopts.py │ │ ├── sdist.py │ │ ├── setopt.py │ │ ├── test.py │ │ ├── upload.py │ │ └── upload_docs.py │ ├── compat │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── py310.cpython-311.pyc │ │ │ ├── py311.cpython-311.pyc │ │ │ ├── py312.cpython-311.pyc │ │ │ └── py39.cpython-311.pyc │ │ ├── py310.py │ │ ├── py311.py │ │ ├── py312.py │ │ └── py39.py │ ├── config │ │ ├── NOTICE │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── _apply_pyprojecttoml.cpython-311.pyc │ │ │ ├── expand.cpython-311.pyc │ │ │ ├── pyprojecttoml.cpython-311.pyc │ │ │ └── setupcfg.cpython-311.pyc │ │ ├── _apply_pyprojecttoml.py │ │ ├── _validate_pyproject │ │ │ ├── NOTICE │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── error_reporting.cpython-311.pyc │ │ │ │ ├── extra_validations.cpython-311.pyc │ │ │ │ ├── fastjsonschema_exceptions.cpython-311.pyc │ │ │ │ ├── fastjsonschema_validations.cpython-311.pyc │ │ │ │ └── formats.cpython-311.pyc │ │ │ ├── error_reporting.py │ │ │ ├── extra_validations.py │ │ │ ├── fastjsonschema_exceptions.py │ │ │ ├── fastjsonschema_validations.py │ │ │ └── formats.py │ │ ├── distutils.schema.json │ │ ├── expand.py │ │ ├── pyprojecttoml.py │ │ ├── setupcfg.py │ │ └── setuptools.schema.json │ ├── depends.py │ ├── discovery.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── glob.py │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui-arm64.exe │ ├── gui.exe │ ├── installer.py │ ├── launch.py │ ├── logging.py │ ├── modified.py │ ├── monkey.py │ ├── msvc.py │ ├── namespaces.py │ ├── package_index.py │ ├── sandbox.py │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── contexts.cpython-311.pyc │ │ │ ├── environment.cpython-311.pyc │ │ │ ├── fixtures.cpython-311.pyc │ │ │ ├── mod_with_constant.cpython-311.pyc │ │ │ ├── namespaces.cpython-311.pyc │ │ │ ├── script-with-bom.cpython-311.pyc │ │ │ ├── server.cpython-311.pyc │ │ │ ├── test_archive_util.cpython-311.pyc │ │ │ ├── test_bdist_deprecations.cpython-311.pyc │ │ │ ├── test_bdist_egg.cpython-311.pyc │ │ │ ├── test_bdist_wheel.cpython-311.pyc │ │ │ ├── test_build.cpython-311.pyc │ │ │ ├── test_build_clib.cpython-311.pyc │ │ │ ├── test_build_ext.cpython-311.pyc │ │ │ ├── test_build_meta.cpython-311.pyc │ │ │ ├── test_build_py.cpython-311.pyc │ │ │ ├── test_config_discovery.cpython-311.pyc │ │ │ ├── test_core_metadata.cpython-311.pyc │ │ │ ├── test_depends.cpython-311.pyc │ │ │ ├── test_develop.cpython-311.pyc │ │ │ ├── test_dist.cpython-311.pyc │ │ │ ├── test_dist_info.cpython-311.pyc │ │ │ ├── test_distutils_adoption.cpython-311.pyc │ │ │ ├── test_easy_install.cpython-311.pyc │ │ │ ├── test_editable_install.cpython-311.pyc │ │ │ ├── test_egg_info.cpython-311.pyc │ │ │ ├── test_extern.cpython-311.pyc │ │ │ ├── test_find_packages.cpython-311.pyc │ │ │ ├── test_find_py_modules.cpython-311.pyc │ │ │ ├── test_glob.cpython-311.pyc │ │ │ ├── test_install_scripts.cpython-311.pyc │ │ │ ├── test_logging.cpython-311.pyc │ │ │ ├── test_manifest.cpython-311.pyc │ │ │ ├── test_namespaces.cpython-311.pyc │ │ │ ├── test_packageindex.cpython-311.pyc │ │ │ ├── test_register.cpython-311.pyc │ │ │ ├── test_sandbox.cpython-311.pyc │ │ │ ├── test_sdist.cpython-311.pyc │ │ │ ├── test_setopt.cpython-311.pyc │ │ │ ├── test_setuptools.cpython-311.pyc │ │ │ ├── test_unicode_utils.cpython-311.pyc │ │ │ ├── test_upload.cpython-311.pyc │ │ │ ├── test_virtualenv.cpython-311.pyc │ │ │ ├── test_warnings.cpython-311.pyc │ │ │ ├── test_wheel.cpython-311.pyc │ │ │ ├── test_windows_wrappers.cpython-311.pyc │ │ │ ├── text.cpython-311.pyc │ │ │ └── textwrap.cpython-311.pyc │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── py39.cpython-311.pyc │ │ │ └── py39.py │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── test_apply_pyprojecttoml.cpython-311.pyc │ │ │ │ ├── test_expand.cpython-311.pyc │ │ │ │ ├── test_pyprojecttoml.cpython-311.pyc │ │ │ │ ├── test_pyprojecttoml_dynamic_deps.cpython-311.pyc │ │ │ │ └── test_setupcfg.cpython-311.pyc │ │ │ ├── downloads │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ └── preload.cpython-311.pyc │ │ │ │ └── preload.py │ │ │ ├── setupcfg_examples.txt │ │ │ ├── test_apply_pyprojecttoml.py │ │ │ ├── test_expand.py │ │ │ ├── test_pyprojecttoml.py │ │ │ ├── test_pyprojecttoml_dynamic_deps.py │ │ │ └── test_setupcfg.py │ │ ├── contexts.py │ │ ├── environment.py │ │ ├── fixtures.py │ │ ├── indexes │ │ │ └── test_links_priority │ │ │ │ ├── external.html │ │ │ │ └── simple │ │ │ │ └── foobar │ │ │ │ └── index.html │ │ ├── integration │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── helpers.cpython-311.pyc │ │ │ │ └── test_pip_install_sdist.cpython-311.pyc │ │ │ ├── helpers.py │ │ │ └── test_pip_install_sdist.py │ │ ├── mod_with_constant.py │ │ ├── namespaces.py │ │ ├── script-with-bom.py │ │ ├── server.py │ │ ├── test_archive_util.py │ │ ├── test_bdist_deprecations.py │ │ ├── test_bdist_egg.py │ │ ├── test_bdist_wheel.py │ │ ├── test_build.py │ │ ├── test_build_clib.py │ │ ├── test_build_ext.py │ │ ├── test_build_meta.py │ │ ├── test_build_py.py │ │ ├── test_config_discovery.py │ │ ├── test_core_metadata.py │ │ ├── test_depends.py │ │ ├── test_develop.py │ │ ├── test_dist.py │ │ ├── test_dist_info.py │ │ ├── test_distutils_adoption.py │ │ ├── test_easy_install.py │ │ ├── test_editable_install.py │ │ ├── test_egg_info.py │ │ ├── test_extern.py │ │ ├── test_find_packages.py │ │ ├── test_find_py_modules.py │ │ ├── test_glob.py │ │ ├── test_install_scripts.py │ │ ├── test_logging.py │ │ ├── test_manifest.py │ │ ├── test_namespaces.py │ │ ├── test_packageindex.py │ │ ├── test_register.py │ │ ├── test_sandbox.py │ │ ├── test_sdist.py │ │ ├── test_setopt.py │ │ ├── test_setuptools.py │ │ ├── test_unicode_utils.py │ │ ├── test_upload.py │ │ ├── test_virtualenv.py │ │ ├── test_warnings.py │ │ ├── test_wheel.py │ │ ├── test_windows_wrappers.py │ │ ├── text.py │ │ └── textwrap.py │ ├── unicode_utils.py │ ├── version.py │ ├── warnings.py │ ├── wheel.py │ └── windows_support.py │ ├── trove_classifiers-2024.10.21.16.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ └── trove_classifiers │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ ├── __init__.cpython-311.pyc │ └── __main__.cpython-311.pyc │ └── py.typed └── pyvenv.cfg /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /bin/mcp-code-analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/bin/mcp-code-analyzer.js -------------------------------------------------------------------------------- /dist/mcp_code_analyzer-0.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/dist/mcp_code_analyzer-0.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/mcp_code_analyzer-0.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/dist/mcp_code_analyzer-0.1.0.tar.gz -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/setup.py -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mcp_code_analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mcp_code_analyzer/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/src/mcp_code_analyzer/__main__.py -------------------------------------------------------------------------------- /src/mcp_code_analyzer/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/src/mcp_code_analyzer/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /src/mcp_code_analyzer/__pycache__/server.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/src/mcp_code_analyzer/__pycache__/server.cpython-311.pyc -------------------------------------------------------------------------------- /src/mcp_code_analyzer/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/src/mcp_code_analyzer/server.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/test.py -------------------------------------------------------------------------------- /test_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/test_analyzer.py -------------------------------------------------------------------------------- /test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/test_code.py -------------------------------------------------------------------------------- /test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/test_package.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /venv/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/bin/Activate.ps1 -------------------------------------------------------------------------------- /venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/bin/activate -------------------------------------------------------------------------------- /venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/bin/activate.csh -------------------------------------------------------------------------------- /venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/bin/activate.fish -------------------------------------------------------------------------------- /venv/bin/hatchling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/bin/hatchling -------------------------------------------------------------------------------- /venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/bin/pip -------------------------------------------------------------------------------- /venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/bin/pip3 -------------------------------------------------------------------------------- /venv/bin/pip3.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/bin/pip3.11 -------------------------------------------------------------------------------- /venv/bin/pyproject-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/bin/pyproject-build -------------------------------------------------------------------------------- /venv/bin/python: -------------------------------------------------------------------------------- 1 | python3.11 -------------------------------------------------------------------------------- /venv/bin/python3: -------------------------------------------------------------------------------- 1 | python3.11 -------------------------------------------------------------------------------- /venv/bin/python3.11: -------------------------------------------------------------------------------- 1 | /opt/homebrew/opt/python@3.11/bin/python3.11 -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/_mcp_code_analyzer.pth: -------------------------------------------------------------------------------- 1 | /Users/seanivore/Projects/mcp-code-analyzer/src -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/build-1.2.2.post1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/build-1.2.2.post1.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/build-1.2.2.post1.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/build-1.2.2.post1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/build-1.2.2.post1.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/build-1.2.2.post1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/build-1.2.2.post1.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/build-1.2.2.post1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/build-1.2.2.post1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling-1.26.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling-1.26.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling-1.26.3.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling-1.26.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling-1.26.3.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling-1.26.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling-1.26.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: hatchling 1.26.3 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/__about__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.26.3' 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/bridge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/bridge/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/bridge/app.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/build.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/app.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/binary.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/config.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/constants.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/custom.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/hooks/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/hooks/custom.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/hooks/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/hooks/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/hooks/version.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/macos.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/plugin/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/plugin/hooks.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/sdist.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/builders/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/builders/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/cli/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/cli/dep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/cli/dep/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/cli/dep/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/cli/dep/core.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/cli/metadata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/cli/metadata/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/cli/version/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/cli/version/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/dep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/dep/core.py: -------------------------------------------------------------------------------- 1 | from hatchling.cli.dep.core import dependencies_in_sync # noqa: F401 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/licenses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/licenses/supported.py: -------------------------------------------------------------------------------- 1 | from packaging.licenses._spdx import VERSION # noqa: F401, PLC2701 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/metadata/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/metadata/core.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/metadata/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/metadata/custom.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/metadata/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/metadata/plugin/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/metadata/plugin/hooks.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/metadata/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/metadata/spec.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/metadata/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/metadata/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/ouroboros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/ouroboros.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/plugin/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/plugin/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/plugin/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/plugin/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/plugin/manager.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/plugin/specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/plugin/specs.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/plugin/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/plugin/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/utils/constants.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/utils/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/utils/context.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/utils/fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/utils/fs.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/version/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/version/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/version/core.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/version/scheme/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/version/scheme/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/version/scheme/standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/version/scheme/standard.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/version/source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/version/source/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/version/source/code.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/version/source/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/version/source/env.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/version/source/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/hatchling/version/source/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/hatchling/version/source/regex.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/mcp_code_analyzer-0.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/mcp_code_analyzer-0.1.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/mcp_code_analyzer-0.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: hatchling 1.26.3 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging-24.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging-24.2.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging-24.2.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging-24.2.dist-info/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging-24.2.dist-info/LICENSE.BSD -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging-24.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging-24.2.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging-24.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging-24.2.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging-24.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.10.1 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/_elffile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/_elffile.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/_manylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/_manylinux.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/_musllinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/_musllinux.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/_parser.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/_structures.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/_tokenizer.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/licenses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/licenses/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/licenses/_spdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/licenses/_spdx.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/markers.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/metadata.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/requirements.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/specifiers.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/tags.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/packaging/version.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec-0.12.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec-0.12.1.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pathspec-0.12.1.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec-0.12.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pathspec-0.12.1.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec-0.12.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pathspec-0.12.1.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec-0.12.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pathspec/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec/_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pathspec/_meta.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec/gitignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pathspec/gitignore.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec/pathspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pathspec/pathspec.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pathspec/pattern.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec/patterns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pathspec/patterns/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec/patterns/gitwildmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pathspec/patterns/gitwildmatch.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. The pathspec package uses inline types. 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pathspec/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pathspec/util.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/AUTHORS.txt -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (75.2.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip-24.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/__pip-runner__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/__pip-runner__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/autocompletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/autocompletion.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/command_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/command_context.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/index_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/index_command.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/progress_bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/progress_bars.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/req_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/req_command.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/completion.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/download.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/index.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/inspect.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/uninstall.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/distributions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/distributions/base.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/distributions/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/distributions/sdist.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/distributions/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/distributions/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/index/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/index/collector.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/index/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/index/sources.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/locations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/locations/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/locations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/locations/base.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/metadata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/metadata/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/metadata/_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/metadata/_json.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/metadata/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/metadata/base.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/models/direct_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/models/direct_url.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/models/search_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/models/search_scope.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/network/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/network/download.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/network/lazy_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/network/lazy_wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/network/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/network/session.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/operations/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/operations/freeze.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/operations/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/operations/prepare.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/req/req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/req/req_uninstall.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/resolution/base.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/self_outdated_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/self_outdated_check.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/_jaraco_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/_jaraco_text.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/_log.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/deprecation.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/egg_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/egg_link.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/entrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/entrypoints.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/filetypes.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/retry.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/subprocess.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/unpacking.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/virtualenv.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/vcs/versioncontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/vcs/versioncontrol.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/adapter.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/wrapper.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/t64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/t64-arm.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/w64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/w64-arm.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distro/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distro/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distro/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distro/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/distro/distro.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/distro/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.7' 2 | 3 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/msgpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/_elffile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_elffile.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/_manylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_manylinux.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/_musllinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_musllinux.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_parser.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_tokenizer.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/metadata.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/android.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/api.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/macos.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/version.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/windows.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/cmdline.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/console.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filter.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatter.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexer.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/modeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/modeline.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/plugin.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/regexopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/regexopt.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/scanner.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/sphinxext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/sphinxext.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/style.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/token.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/unistring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/unistring.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pygments/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pygments/util.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_impl.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/__version__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/adapters.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/packages.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/sessions.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/status_codes.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/structures.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/providers.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/reporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/reporters.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/resolvers.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/structs.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_cell_widths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_cell_widths.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_codes.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_replace.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_export_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_export_format.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_extension.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_fileno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_fileno.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_inspect.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_log_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_log_render.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_loop.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_null_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_null_file.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_palettes.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_pick.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_ratio.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_spinners.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_stack.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_timer.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_win32_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_win32_console.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/_wrap.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/abc.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/align.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/ansi.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/bar.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/box.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/cells.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/color.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/color_triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/color_triplet.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/columns.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/console.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/constrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/constrain.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/containers.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/control.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/default_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/default_styles.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/diagnose.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/emoji.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/errors.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/file_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/file_proxy.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/filesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/filesize.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/highlighter.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/json.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/jupyter.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/layout.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/live.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/live_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/live_render.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/logging.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/markup.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/measure.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/padding.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/pager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/pager.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/palette.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/panel.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/pretty.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/progress.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/progress_bar.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/prompt.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/protocol.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/region.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/repr.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/rule.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/scope.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/screen.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/segment.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/spinner.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/status.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/style.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/styled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/styled.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/syntax.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/table.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/terminal_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/terminal_theme.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/text.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/theme.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/themes.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/traceback.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/rich/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/rich/tree.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/tomli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/tomli/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/tomli/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/tomli/_parser.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/tomli/_re.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/tomli/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/tomli/_types.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/tomli/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/truststore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/truststore/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/truststore/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/truststore/_api.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/truststore/_macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/truststore/_macos.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/truststore/_openssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/truststore/_openssl.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/truststore/_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/truststore/_windows.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/truststore/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/typing_extensions.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/_collections.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.20" 3 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/connection.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/six.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/poolmanager.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/proxy.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/queue.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/request.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/response.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/retry.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/timeout.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/wait.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pip/py.typed -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pkg_resources/api_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pkg_resources/api_tests.txt -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pkg_resources/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pkg_resources/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pkg_resources/tests/data/my-test-package-source/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pkg_resources/tests/test_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pkg_resources/tests/test_markers.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy-1.5.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy-1.5.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pluggy-1.5.0.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy-1.5.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pluggy-1.5.0.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy-1.5.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pluggy-1.5.0.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy-1.5.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.43.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy-1.5.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pluggy 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pluggy/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy/_callers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pluggy/_callers.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy/_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pluggy/_hooks.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy/_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pluggy/_manager.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy/_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pluggy/_result.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy/_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pluggy/_tracing.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pluggy/_version.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy/_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pluggy/_warnings.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pluggy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pyproject_hooks-1.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pyproject_hooks-1.2.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pyproject_hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pyproject_hooks/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pyproject_hooks/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/pyproject_hooks/_impl.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/pyproject_hooks/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools-74.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools-74.1.2.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools-74.1.2.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools-74.1.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools-74.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (74.1.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools-74.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_core_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_core_metadata.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/_log.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/cmd.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/config.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/core.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/debug.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/dep_util.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/dir_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/dir_util.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/dist.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/errors.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/filelist.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/log.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/spawn.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/tests/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/tests/test_versionpredicate.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/util.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_distutils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_distutils/version.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_entry_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_entry_points.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_importlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_importlib.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_itertools.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_normalization.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_path.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_reqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_reqs.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.38.4) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | autocommand 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | backports 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | importlib_metadata 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | importlib_resources 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/future/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/data01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/data01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/data01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/data02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/resource1.txt: -------------------------------------------------------------------------------- 1 | one resource 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/data02/subdirectory/subsubdir/resource.txt: -------------------------------------------------------------------------------- 1 | a resource -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/resource2.txt: -------------------------------------------------------------------------------- 1 | two resource 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/subdirectory/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (70.2.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | inflect 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/inflect/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/inflect/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jaraco 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jaraco 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jaraco 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/functools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.8.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/packaging-24.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/packaging-24.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/packaging-24.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/platformdirs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/ruff.toml: -------------------------------------------------------------------------------- 1 | exclude = ["*"] 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/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 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/_re.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.43.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | typeguard 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/typeguard/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/wheel/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_vendor/wheel/util.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/wheel/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/wheel/vendored/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/wheel/vendored/vendor.txt: -------------------------------------------------------------------------------- 1 | packaging==24.0 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.43.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | zipp 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/zipp/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/_vendor/zipp/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/_vendor/zipp/glob.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/cli-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/cli-arm64.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/bdist_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/bdist_wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/build.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/build_clib.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/install_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/install_lib.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/command/upload_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/command/upload_docs.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/compat/py310.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/compat/py310.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/compat/py311.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/compat/py311.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/compat/py312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/compat/py312.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/compat/py39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/compat/py39.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/config/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/config/NOTICE -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/config/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/config/expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/config/expand.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/config/setupcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/config/setupcfg.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/discovery.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/gui-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/gui-arm64.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/logging.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/modified.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/compat/py39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/compat/py39.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/contexts.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/environment.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/fixtures.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/mod_with_constant.py: -------------------------------------------------------------------------------- 1 | value = 'three, sir!' 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/namespaces.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/script-with-bom.py: -------------------------------------------------------------------------------- 1 | result = 'passed' 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/server.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_build.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_build_py.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_depends.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_develop.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_dist.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_egg_info.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_extern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_extern.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_glob.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_logging.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_manifest.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_register.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_sandbox.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_sdist.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_setopt.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_upload.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_warnings.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/test_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/test_wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/text.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/tests/textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/tests/textwrap.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/warnings.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/trove_classifiers-2024.10.21.16.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/trove_classifiers-2024.10.21.16.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (75.2.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/trove_classifiers-2024.10.21.16.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | trove_classifiers 2 | -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/trove_classifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/trove_classifiers/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/trove_classifiers/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/lib/python3.11/site-packages/trove_classifiers/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.11/site-packages/trove_classifiers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanivore/mcp-code-analyzer/HEAD/venv/pyvenv.cfg --------------------------------------------------------------------------------