activity-browser 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- activity_browser-0.0.0/.idea/.gitignore +8 -0
- activity_browser-0.0.0/.idea/.name +1 -0
- activity_browser-0.0.0/.idea/ab_pypi.iml +10 -0
- activity_browser-0.0.0/.idea/inspectionProfiles/Project_Default.xml +12 -0
- activity_browser-0.0.0/.idea/inspectionProfiles/profiles_settings.xml +6 -0
- activity_browser-0.0.0/.idea/misc.xml +7 -0
- activity_browser-0.0.0/.idea/modules.xml +8 -0
- activity_browser-0.0.0/.idea/workspace.xml +62 -0
- activity_browser-0.0.0/LICENSE +165 -0
- activity_browser-0.0.0/PKG-INFO +14 -0
- activity_browser-0.0.0/README.md +4 -0
- activity_browser-0.0.0/pyproject.toml +16 -0
- activity_browser-0.0.0/src/activity_browser/__init__.py +1 -0
- activity_browser-0.0.0/venv/.gitignore +2 -0
- activity_browser-0.0.0/venv/Lib/site-packages/_virtualenv.pth +1 -0
- activity_browser-0.0.0/venv/Lib/site-packages/_virtualenv.py +102 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/__init__.py +39 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/__main__.py +455 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/_builder.py +347 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/_compat/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/_compat/importlib.py +22 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/_compat/tarfile.py +32 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/_compat/tomllib.py +16 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/_ctx.py +98 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/_exceptions.py +65 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/_types.py +12 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/_util.py +63 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/env.py +372 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/py.typed +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build/util.py +61 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build-1.2.1.dist-info/INSTALLER +1 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build-1.2.1.dist-info/LICENSE +20 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build-1.2.1.dist-info/METADATA +95 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build-1.2.1.dist-info/RECORD +35 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build-1.2.1.dist-info/REQUESTED +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build-1.2.1.dist-info/WHEEL +4 -0
- activity_browser-0.0.0/venv/Lib/site-packages/build-1.2.1.dist-info/entry_points.txt +6 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/__init__.py +7 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/ansi.py +102 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/ansitowin32.py +277 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/initialise.py +121 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/tests/__init__.py +1 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/tests/ansi_test.py +76 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/tests/ansitowin32_test.py +294 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/tests/initialise_test.py +189 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/tests/isatty_test.py +57 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/tests/utils.py +49 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/tests/winterm_test.py +131 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/win32.py +180 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama/winterm.py +195 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama-0.4.6.dist-info/INSTALLER +1 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama-0.4.6.dist-info/METADATA +441 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama-0.4.6.dist-info/RECORD +31 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama-0.4.6.dist-info/WHEEL +5 -0
- activity_browser-0.0.0/venv/Lib/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt +27 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/__init__.py +15 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/_elffile.py +110 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/_manylinux.py +262 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/_musllinux.py +85 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/_parser.py +354 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/_structures.py +61 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/_tokenizer.py +194 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/markers.py +325 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/metadata.py +804 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/py.typed +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/requirements.py +91 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/specifiers.py +1009 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/tags.py +568 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/utils.py +174 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging/version.py +563 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging-24.1.dist-info/INSTALLER +1 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging-24.1.dist-info/LICENSE +3 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging-24.1.dist-info/LICENSE.APACHE +177 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging-24.1.dist-info/LICENSE.BSD +23 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging-24.1.dist-info/METADATA +102 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging-24.1.dist-info/RECORD +36 -0
- activity_browser-0.0.0/venv/Lib/site-packages/packaging-24.1.dist-info/WHEEL +4 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/__init__.py +13 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/__main__.py +24 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/__pip-runner__.py +50 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/__init__.py +19 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/build_env.py +311 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cache.py +292 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/__init__.py +4 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/autocompletion.py +171 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/base_command.py +236 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py +1074 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/command_context.py +27 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/main.py +79 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/main_parser.py +134 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/parser.py +294 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/progress_bars.py +68 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/req_command.py +508 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/spinners.py +159 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/cli/status_codes.py +6 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/__init__.py +132 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/cache.py +222 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/check.py +54 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/completion.py +121 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/configuration.py +282 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/debug.py +199 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/download.py +147 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/freeze.py +108 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/hash.py +59 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/help.py +41 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/index.py +139 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/inspect.py +92 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/install.py +778 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/list.py +368 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/search.py +174 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/show.py +189 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/uninstall.py +113 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/commands/wheel.py +183 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/configuration.py +381 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/distributions/__init__.py +21 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/distributions/base.py +39 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/distributions/installed.py +23 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/distributions/sdist.py +150 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/distributions/wheel.py +34 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/exceptions.py +733 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/index/__init__.py +2 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/index/collector.py +505 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/index/package_finder.py +1029 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/index/sources.py +223 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/locations/__init__.py +467 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/locations/_distutils.py +173 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py +213 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/locations/base.py +81 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/main.py +12 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/metadata/__init__.py +127 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/metadata/_json.py +84 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/metadata/base.py +688 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py +4 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py +55 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py +224 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py +188 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py +270 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/__init__.py +2 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/candidate.py +34 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/direct_url.py +237 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/format_control.py +80 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/index.py +28 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/installation_report.py +53 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/link.py +581 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/scheme.py +31 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/search_scope.py +132 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/selection_prefs.py +51 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/target_python.py +110 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/models/wheel.py +92 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/network/__init__.py +2 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/network/auth.py +561 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/network/cache.py +69 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/network/download.py +186 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/network/session.py +519 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/network/utils.py +96 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/network/xmlrpc.py +60 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py +124 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/build/metadata.py +39 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py +74 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/build/wheel.py +37 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py +102 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/check.py +187 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/freeze.py +255 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/install/__init__.py +2 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py +46 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/install/wheel.py +740 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/operations/prepare.py +743 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/pyproject.py +179 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/req/__init__.py +92 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/req/constructors.py +506 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/req/req_file.py +552 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/req/req_install.py +874 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/req/req_set.py +119 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/req/req_uninstall.py +650 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/base.py +20 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py +600 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py +141 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py +555 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py +730 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +155 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py +255 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py +80 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py +165 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py +299 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/self_outdated_check.py +242 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/_log.py +38 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/appdirs.py +52 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/compat.py +63 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py +165 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/datetime.py +11 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/deprecation.py +120 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/egg_link.py +72 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/encoding.py +36 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/entrypoints.py +84 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/filesystem.py +153 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/filetypes.py +27 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/glibc.py +88 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/hashes.py +151 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/inject_securetransport.py +35 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/logging.py +348 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/misc.py +735 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/models.py +39 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/packaging.py +57 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py +146 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/subprocess.py +260 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/temp_dir.py +246 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/unpacking.py +257 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/urls.py +62 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/virtualenv.py +104 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/utils/wheel.py +136 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/vcs/__init__.py +15 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/vcs/bazaar.py +112 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/vcs/git.py +526 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/vcs/mercurial.py +163 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/vcs/subversion.py +324 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py +705 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_internal/wheel_builder.py +355 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/__init__.py +120 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py +18 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py +61 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py +137 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py +65 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +9 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +188 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +39 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/compat.py +32 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py +439 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py +111 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py +139 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py +190 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py +33 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem +4589 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/certifi/core.py +108 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/__init__.py +115 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py +386 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/big5prober.py +47 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/chardistribution.py +261 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py +106 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/charsetprober.py +147 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py +112 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py +90 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py +19 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/cp949prober.py +49 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/enums.py +85 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/escprober.py +102 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/escsm.py +261 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py +102 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py +196 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/euckrprober.py +47 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py +388 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/euctwprober.py +47 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py +284 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py +47 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py +316 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py +325 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/johabfreq.py +2382 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/johabprober.py +47 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py +238 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +4649 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py +4397 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py +4380 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py +4649 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py +5725 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py +4380 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py +4380 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/latin1prober.py +147 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/macromanprober.py +162 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py +95 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +57 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py +661 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py +352 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/resultdict.py +16 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py +162 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +88 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/sjisprober.py +105 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/universaldetector.py +362 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py +225 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/utf8prober.py +82 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/chardet/version.py +9 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/__init__.py +7 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/ansi.py +102 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py +277 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/initialise.py +121 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py +1 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py +76 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py +294 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py +189 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py +57 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/tests/utils.py +49 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py +131 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/win32.py +180 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/colorama/winterm.py +195 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/__init__.py +23 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/compat.py +1116 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/database.py +1350 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/index.py +508 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/locators.py +1300 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/manifest.py +393 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/markers.py +152 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/metadata.py +1076 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/resources.py +358 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/scripts.py +437 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/util.py +1932 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/version.py +739 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distlib/wheel.py +1082 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distro/__init__.py +54 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distro/__main__.py +4 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/distro/distro.py +1399 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/idna/__init__.py +44 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/idna/codec.py +112 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/idna/compat.py +13 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/idna/core.py +400 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/idna/idnadata.py +2151 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/idna/intranges.py +54 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/idna/package_data.py +2 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/idna/uts46data.py +8600 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py +57 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/msgpack/ext.py +193 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py +1010 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/packaging/__about__.py +26 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/packaging/__init__.py +25 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py +301 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py +136 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/packaging/_structures.py +61 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/packaging/markers.py +304 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/packaging/requirements.py +146 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py +802 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/packaging/tags.py +487 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/packaging/utils.py +136 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/packaging/version.py +504 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py +3361 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py +566 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py +53 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/platformdirs/android.py +210 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/platformdirs/api.py +223 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py +91 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py +223 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/platformdirs/version.py +4 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py +255 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/cmdline.py +668 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/console.py +70 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/filter.py +71 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatter.py +124 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py +158 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py +170 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py +989 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py +645 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py +154 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py +521 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py +161 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py +146 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py +188 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/lexer.py +943 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py +559 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py +1198 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/plugin.py +88 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py +217 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/style.py +197 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py +103 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/token.py +213 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pygments/util.py +330 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyparsing/__init__.py +322 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyparsing/actions.py +217 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyparsing/common.py +432 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyparsing/core.py +6115 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py +656 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py +299 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyparsing/helpers.py +1100 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyparsing/results.py +796 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyparsing/testing.py +331 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyparsing/unicode.py +361 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyparsing/util.py +284 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py +23 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py +8 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py +330 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +18 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +353 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/__init__.py +182 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/__version__.py +14 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/adapters.py +538 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/api.py +157 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/auth.py +315 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/certs.py +24 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/compat.py +67 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/cookies.py +561 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/exceptions.py +141 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/help.py +131 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/hooks.py +33 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/models.py +1034 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/packages.py +16 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/sessions.py +833 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/structures.py +99 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/requests/utils.py +1094 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py +547 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py +170 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/__init__.py +177 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/__main__.py +274 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py +451 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_extension.py +10 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_inspect.py +270 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_loop.py +43 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_pick.py +17 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_ratio.py +160 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_stack.py +16 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_timer.py +19 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py +662 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_windows.py +72 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/_wrap.py +56 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/abc.py +33 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/align.py +311 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/ansi.py +240 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/bar.py +94 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/box.py +517 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/cells.py +154 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/color.py +622 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/columns.py +187 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/console.py +2633 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/constrain.py +37 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/containers.py +167 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/control.py +225 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/default_styles.py +190 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/diagnose.py +37 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/emoji.py +96 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/errors.py +34 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/filesize.py +89 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/json.py +140 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/layout.py +443 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/live.py +375 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/live_render.py +113 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/logging.py +289 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/markup.py +246 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/measure.py +151 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/padding.py +141 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/pager.py +34 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/palette.py +100 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/panel.py +308 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/pretty.py +994 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/progress.py +1702 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py +224 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/prompt.py +376 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/protocol.py +42 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/region.py +10 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/repr.py +149 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/rule.py +130 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/scope.py +86 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/screen.py +54 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/segment.py +739 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/spinner.py +137 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/status.py +132 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/style.py +796 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/styled.py +42 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/syntax.py +948 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/table.py +1002 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/text.py +1307 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/theme.py +115 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/themes.py +5 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/traceback.py +756 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/rich/tree.py +251 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/six.py +998 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tenacity/__init__.py +608 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py +94 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tenacity/_utils.py +76 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tenacity/after.py +51 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tenacity/before.py +46 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py +71 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tenacity/nap.py +43 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tenacity/retry.py +272 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tenacity/stop.py +103 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py +59 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tenacity/wait.py +228 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tomli/__init__.py +11 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tomli/_parser.py +691 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tomli/_re.py +107 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/tomli/_types.py +10 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/typing_extensions.py +3072 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py +337 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py +1132 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +921 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py +537 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/request.py +170 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/response.py +879 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py +620 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py +495 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/vendor.txt +23 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/webencodings/__init__.py +342 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/webencodings/labels.py +231 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/webencodings/mklabels.py +59 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/webencodings/tests.py +153 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py +325 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip/py.typed +4 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip-23.2.1.dist-info/AUTHORS.txt +738 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip-23.2.1.dist-info/INSTALLER +1 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip-23.2.1.dist-info/LICENSE.txt +20 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip-23.2.1.dist-info/METADATA +90 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip-23.2.1.dist-info/RECORD +1063 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip-23.2.1.dist-info/WHEEL +5 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip-23.2.1.dist-info/entry_points.txt +4 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip-23.2.1.dist-info/top_level.txt +1 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pip-23.2.1.virtualenv +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pyproject_hooks/__init__.py +31 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pyproject_hooks/_impl.py +410 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pyproject_hooks/_in_process/__init__.py +21 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pyproject_hooks/_in_process/_in_process.py +373 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pyproject_hooks/py.typed +0 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pyproject_hooks-1.1.0.dist-info/INSTALLER +1 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pyproject_hooks-1.1.0.dist-info/METADATA +25 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pyproject_hooks-1.1.0.dist-info/RECORD +13 -0
- activity_browser-0.0.0/venv/Lib/site-packages/pyproject_hooks-1.1.0.dist-info/WHEEL +4 -0
- activity_browser-0.0.0/venv/Scripts/activate +87 -0
- activity_browser-0.0.0/venv/Scripts/activate.bat +38 -0
- activity_browser-0.0.0/venv/Scripts/activate.fish +103 -0
- activity_browser-0.0.0/venv/Scripts/activate.nu +96 -0
- activity_browser-0.0.0/venv/Scripts/activate.ps1 +61 -0
- activity_browser-0.0.0/venv/Scripts/activate_this.py +36 -0
- activity_browser-0.0.0/venv/Scripts/deactivate.bat +18 -0
- activity_browser-0.0.0/venv/Scripts/pip-3.12.exe +0 -0
- activity_browser-0.0.0/venv/Scripts/pip.exe +0 -0
- activity_browser-0.0.0/venv/Scripts/pip3.12.exe +0 -0
- activity_browser-0.0.0/venv/Scripts/pip3.exe +0 -0
- activity_browser-0.0.0/venv/Scripts/pydoc.bat +1 -0
- activity_browser-0.0.0/venv/Scripts/pyproject-build.exe +0 -0
- activity_browser-0.0.0/venv/Scripts/python.exe +0 -0
- activity_browser-0.0.0/venv/Scripts/pythonw.exe +0 -0
- activity_browser-0.0.0/venv/pyvenv.cfg +8 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ab_pypi
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="PYTHON_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$">
|
|
5
|
+
<excludeFolder url="file://$MODULE_DIR$/venv" />
|
|
6
|
+
</content>
|
|
7
|
+
<orderEntry type="jdk" jdkName="Python 3.12 (ab_pypi)" jdkType="Python SDK" />
|
|
8
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
9
|
+
</component>
|
|
10
|
+
</module>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
|
2
|
+
<profile version="1.0">
|
|
3
|
+
<option name="myName" value="Project Default" />
|
|
4
|
+
<inspection_tool class="PyUnresolvedReferencesInspection" enabled="true" level="WARNING" enabled_by_default="true">
|
|
5
|
+
<option name="ignoredIdentifiers">
|
|
6
|
+
<list>
|
|
7
|
+
<option value="PySide2.QtWidgets.clicked.*" />
|
|
8
|
+
</list>
|
|
9
|
+
</option>
|
|
10
|
+
</inspection_tool>
|
|
11
|
+
</profile>
|
|
12
|
+
</component>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="Black">
|
|
4
|
+
<option name="sdkName" value="activity-browser-25" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12 (ab_pypi)" project-jdk-type="Python SDK" />
|
|
7
|
+
</project>
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="AutoImportSettings">
|
|
4
|
+
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ChangeListManager">
|
|
7
|
+
<list default="true" id="dbdd5fc3-8892-4708-bc48-a9b89f7ed7c3" name="Changes" comment="" />
|
|
8
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
9
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
11
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
12
|
+
</component>
|
|
13
|
+
<component name="ProjectColorInfo">{
|
|
14
|
+
"associatedIndex": 0
|
|
15
|
+
}</component>
|
|
16
|
+
<component name="ProjectId" id="2lN5iDGkqyhHn3EHmiwnQkDJjyj" />
|
|
17
|
+
<component name="ProjectViewState">
|
|
18
|
+
<option name="hideEmptyMiddlePackages" value="true" />
|
|
19
|
+
<option name="showLibraryContents" value="true" />
|
|
20
|
+
</component>
|
|
21
|
+
<component name="PropertiesComponent"><![CDATA[{
|
|
22
|
+
"keyToString": {
|
|
23
|
+
"Python.example.executor": "Run",
|
|
24
|
+
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
25
|
+
"last_opened_file_path": "C:/Users/marin/PycharmProjects/ab_pypi",
|
|
26
|
+
"node.js.detected.package.eslint": "true",
|
|
27
|
+
"node.js.detected.package.tslint": "true",
|
|
28
|
+
"node.js.selected.package.eslint": "(autodetect)",
|
|
29
|
+
"node.js.selected.package.tslint": "(autodetect)",
|
|
30
|
+
"nodejs_package_manager_path": "npm",
|
|
31
|
+
"settings.editor.selected.configurable": "com.jetbrains.python.configuration.PyActiveSdkModuleConfigurable",
|
|
32
|
+
"vue.rearranger.settings.migration": "true"
|
|
33
|
+
}
|
|
34
|
+
}]]></component>
|
|
35
|
+
<component name="SharedIndexes">
|
|
36
|
+
<attachedChunks>
|
|
37
|
+
<set>
|
|
38
|
+
<option value="bundled-js-predefined-1d06a55b98c1-0b3e54e931b4-JavaScript-PY-241.18034.82" />
|
|
39
|
+
<option value="bundled-python-sdk-975db3bf15a3-2767605e8bc2-com.jetbrains.pycharm.pro.sharedIndexes.bundled-PY-241.18034.82" />
|
|
40
|
+
</set>
|
|
41
|
+
</attachedChunks>
|
|
42
|
+
</component>
|
|
43
|
+
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
|
44
|
+
<component name="TaskManager">
|
|
45
|
+
<task active="true" id="Default" summary="Default task">
|
|
46
|
+
<changelist id="dbdd5fc3-8892-4708-bc48-a9b89f7ed7c3" name="Changes" comment="" />
|
|
47
|
+
<created>1725007818387</created>
|
|
48
|
+
<option name="number" value="Default" />
|
|
49
|
+
<option name="presentableId" value="Default" />
|
|
50
|
+
<updated>1725007818387</updated>
|
|
51
|
+
<workItem from="1725007819435" duration="710000" />
|
|
52
|
+
<workItem from="1725008598544" duration="683000" />
|
|
53
|
+
</task>
|
|
54
|
+
<servers />
|
|
55
|
+
</component>
|
|
56
|
+
<component name="TypeScriptGeneratedFilesManager">
|
|
57
|
+
<option name="version" value="3" />
|
|
58
|
+
</component>
|
|
59
|
+
<component name="com.intellij.coverage.CoverageDataManagerImpl">
|
|
60
|
+
<SUITE FILE_PATH="coverage/packaging_tutorial$example.coverage" NAME="example Coverage Results" MODIFIED="1725007920342" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="coverage.py" COVERAGE_BY_TEST_ENABLED="false" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/src/example_package_mrvisscher" />
|
|
61
|
+
</component>
|
|
62
|
+
</project>
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 29 June 2007
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
6
|
+
of this license document, but changing it is not allowed.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
This version of the GNU Lesser General Public License incorporates
|
|
10
|
+
the terms and conditions of version 3 of the GNU General Public
|
|
11
|
+
License, supplemented by the additional permissions listed below.
|
|
12
|
+
|
|
13
|
+
0. Additional Definitions.
|
|
14
|
+
|
|
15
|
+
As used herein, "this License" refers to version 3 of the GNU Lesser
|
|
16
|
+
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
|
17
|
+
General Public License.
|
|
18
|
+
|
|
19
|
+
"The Library" refers to a covered work governed by this License,
|
|
20
|
+
other than an Application or a Combined Work as defined below.
|
|
21
|
+
|
|
22
|
+
An "Application" is any work that makes use of an interface provided
|
|
23
|
+
by the Library, but which is not otherwise based on the Library.
|
|
24
|
+
Defining a subclass of a class defined by the Library is deemed a mode
|
|
25
|
+
of using an interface provided by the Library.
|
|
26
|
+
|
|
27
|
+
A "Combined Work" is a work produced by combining or linking an
|
|
28
|
+
Application with the Library. The particular version of the Library
|
|
29
|
+
with which the Combined Work was made is also called the "Linked
|
|
30
|
+
Version".
|
|
31
|
+
|
|
32
|
+
The "Minimal Corresponding Source" for a Combined Work means the
|
|
33
|
+
Corresponding Source for the Combined Work, excluding any source code
|
|
34
|
+
for portions of the Combined Work that, considered in isolation, are
|
|
35
|
+
based on the Application, and not on the Linked Version.
|
|
36
|
+
|
|
37
|
+
The "Corresponding Application Code" for a Combined Work means the
|
|
38
|
+
object code and/or source code for the Application, including any data
|
|
39
|
+
and utility programs needed for reproducing the Combined Work from the
|
|
40
|
+
Application, but excluding the System Libraries of the Combined Work.
|
|
41
|
+
|
|
42
|
+
1. Exception to Section 3 of the GNU GPL.
|
|
43
|
+
|
|
44
|
+
You may convey a covered work under sections 3 and 4 of this License
|
|
45
|
+
without being bound by section 3 of the GNU GPL.
|
|
46
|
+
|
|
47
|
+
2. Conveying Modified Versions.
|
|
48
|
+
|
|
49
|
+
If you modify a copy of the Library, and, in your modifications, a
|
|
50
|
+
facility refers to a function or data to be supplied by an Application
|
|
51
|
+
that uses the facility (other than as an argument passed when the
|
|
52
|
+
facility is invoked), then you may convey a copy of the modified
|
|
53
|
+
version:
|
|
54
|
+
|
|
55
|
+
a) under this License, provided that you make a good faith effort to
|
|
56
|
+
ensure that, in the event an Application does not supply the
|
|
57
|
+
function or data, the facility still operates, and performs
|
|
58
|
+
whatever part of its purpose remains meaningful, or
|
|
59
|
+
|
|
60
|
+
b) under the GNU GPL, with none of the additional permissions of
|
|
61
|
+
this License applicable to that copy.
|
|
62
|
+
|
|
63
|
+
3. Object Code Incorporating Material from Library Header Files.
|
|
64
|
+
|
|
65
|
+
The object code form of an Application may incorporate material from
|
|
66
|
+
a header file that is part of the Library. You may convey such object
|
|
67
|
+
code under terms of your choice, provided that, if the incorporated
|
|
68
|
+
material is not limited to numerical parameters, data structure
|
|
69
|
+
layouts and accessors, or small macros, inline functions and templates
|
|
70
|
+
(ten or fewer lines in length), you do both of the following:
|
|
71
|
+
|
|
72
|
+
a) Give prominent notice with each copy of the object code that the
|
|
73
|
+
Library is used in it and that the Library and its use are
|
|
74
|
+
covered by this License.
|
|
75
|
+
|
|
76
|
+
b) Accompany the object code with a copy of the GNU GPL and this license
|
|
77
|
+
document.
|
|
78
|
+
|
|
79
|
+
4. Combined Works.
|
|
80
|
+
|
|
81
|
+
You may convey a Combined Work under terms of your choice that,
|
|
82
|
+
taken together, effectively do not restrict modification of the
|
|
83
|
+
portions of the Library contained in the Combined Work and reverse
|
|
84
|
+
engineering for debugging such modifications, if you also do each of
|
|
85
|
+
the following:
|
|
86
|
+
|
|
87
|
+
a) Give prominent notice with each copy of the Combined Work that
|
|
88
|
+
the Library is used in it and that the Library and its use are
|
|
89
|
+
covered by this License.
|
|
90
|
+
|
|
91
|
+
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
|
92
|
+
document.
|
|
93
|
+
|
|
94
|
+
c) For a Combined Work that displays copyright notices during
|
|
95
|
+
execution, include the copyright notice for the Library among
|
|
96
|
+
these notices, as well as a reference directing the user to the
|
|
97
|
+
copies of the GNU GPL and this license document.
|
|
98
|
+
|
|
99
|
+
d) Do one of the following:
|
|
100
|
+
|
|
101
|
+
0) Convey the Minimal Corresponding Source under the terms of this
|
|
102
|
+
License, and the Corresponding Application Code in a form
|
|
103
|
+
suitable for, and under terms that permit, the user to
|
|
104
|
+
recombine or relink the Application with a modified version of
|
|
105
|
+
the Linked Version to produce a modified Combined Work, in the
|
|
106
|
+
manner specified by section 6 of the GNU GPL for conveying
|
|
107
|
+
Corresponding Source.
|
|
108
|
+
|
|
109
|
+
1) Use a suitable shared library mechanism for linking with the
|
|
110
|
+
Library. A suitable mechanism is one that (a) uses at run time
|
|
111
|
+
a copy of the Library already present on the user's computer
|
|
112
|
+
system, and (b) will operate properly with a modified version
|
|
113
|
+
of the Library that is interface-compatible with the Linked
|
|
114
|
+
Version.
|
|
115
|
+
|
|
116
|
+
e) Provide Installation Information, but only if you would otherwise
|
|
117
|
+
be required to provide such information under section 6 of the
|
|
118
|
+
GNU GPL, and only to the extent that such information is
|
|
119
|
+
necessary to install and execute a modified version of the
|
|
120
|
+
Combined Work produced by recombining or relinking the
|
|
121
|
+
Application with a modified version of the Linked Version. (If
|
|
122
|
+
you use option 4d0, the Installation Information must accompany
|
|
123
|
+
the Minimal Corresponding Source and Corresponding Application
|
|
124
|
+
Code. If you use option 4d1, you must provide the Installation
|
|
125
|
+
Information in the manner specified by section 6 of the GNU GPL
|
|
126
|
+
for conveying Corresponding Source.)
|
|
127
|
+
|
|
128
|
+
5. Combined Libraries.
|
|
129
|
+
|
|
130
|
+
You may place library facilities that are a work based on the
|
|
131
|
+
Library side by side in a single library together with other library
|
|
132
|
+
facilities that are not Applications and are not covered by this
|
|
133
|
+
License, and convey such a combined library under terms of your
|
|
134
|
+
choice, if you do both of the following:
|
|
135
|
+
|
|
136
|
+
a) Accompany the combined library with a copy of the same work based
|
|
137
|
+
on the Library, uncombined with any other library facilities,
|
|
138
|
+
conveyed under the terms of this License.
|
|
139
|
+
|
|
140
|
+
b) Give prominent notice with the combined library that part of it
|
|
141
|
+
is a work based on the Library, and explaining where to find the
|
|
142
|
+
accompanying uncombined form of the same work.
|
|
143
|
+
|
|
144
|
+
6. Revised Versions of the GNU Lesser General Public License.
|
|
145
|
+
|
|
146
|
+
The Free Software Foundation may publish revised and/or new versions
|
|
147
|
+
of the GNU Lesser General Public License from time to time. Such new
|
|
148
|
+
versions will be similar in spirit to the present version, but may
|
|
149
|
+
differ in detail to address new problems or concerns.
|
|
150
|
+
|
|
151
|
+
Each version is given a distinguishing version number. If the
|
|
152
|
+
Library as you received it specifies that a certain numbered version
|
|
153
|
+
of the GNU Lesser General Public License "or any later version"
|
|
154
|
+
applies to it, you have the option of following the terms and
|
|
155
|
+
conditions either of that published version or of any later version
|
|
156
|
+
published by the Free Software Foundation. If the Library as you
|
|
157
|
+
received it does not specify a version number of the GNU Lesser
|
|
158
|
+
General Public License, you may choose any version of the GNU Lesser
|
|
159
|
+
General Public License ever published by the Free Software Foundation.
|
|
160
|
+
|
|
161
|
+
If the Library as you received it specifies that a proxy can decide
|
|
162
|
+
whether future versions of the GNU Lesser General Public License shall
|
|
163
|
+
apply, that proxy's public statement of acceptance of any version is
|
|
164
|
+
permanent authorization for you to choose that version for the
|
|
165
|
+
Library.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: activity-browser
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder package for the Brightway2 GUI: Activity Browser
|
|
5
|
+
Author-email: Marin Visscher <m.r.visscher@cml.leidenuniv.nl>
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Activity Browser
|
|
12
|
+
|
|
13
|
+
This is only a placeholder package for the Activity Browser: a GUI for the Brightway2 LCA framework. The package is not
|
|
14
|
+
available via PyPi/Pip. Please install via Conda until this is resolved.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "activity-browser"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
authors = [
|
|
5
|
+
{ name="Marin Visscher", email="m.r.visscher@cml.leidenuniv.nl" },
|
|
6
|
+
]
|
|
7
|
+
description = "Placeholder package for the Brightway2 GUI: Activity Browser"
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
requires-python = ">=3.8"
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 1 - Planning",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[build-system]
|
|
15
|
+
requires = ["hatchling"]
|
|
16
|
+
build-backend = "hatchling.build"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
raise ImportError("Activity Browser is not yet available on PYPI/Pip, please install via Conda for now.")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import _virtualenv
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"""Patches that are applied at runtime to the virtual environment."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import os
|
|
6
|
+
import sys
|
|
7
|
+
from contextlib import suppress
|
|
8
|
+
|
|
9
|
+
VIRTUALENV_PATCH_FILE = os.path.join(__file__)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def patch_dist(dist):
|
|
13
|
+
"""
|
|
14
|
+
Distutils allows user to configure some arguments via a configuration file:
|
|
15
|
+
https://docs.python.org/3/install/index.html#distutils-configuration-files.
|
|
16
|
+
|
|
17
|
+
Some of this arguments though don't make sense in context of the virtual environment files, let's fix them up.
|
|
18
|
+
""" # noqa: D205
|
|
19
|
+
# we cannot allow some install config as that would get packages installed outside of the virtual environment
|
|
20
|
+
old_parse_config_files = dist.Distribution.parse_config_files
|
|
21
|
+
|
|
22
|
+
def parse_config_files(self, *args, **kwargs):
|
|
23
|
+
result = old_parse_config_files(self, *args, **kwargs)
|
|
24
|
+
install = self.get_option_dict("install")
|
|
25
|
+
|
|
26
|
+
if "prefix" in install: # the prefix governs where to install the libraries
|
|
27
|
+
install["prefix"] = VIRTUALENV_PATCH_FILE, os.path.abspath(sys.prefix)
|
|
28
|
+
for base in ("purelib", "platlib", "headers", "scripts", "data"):
|
|
29
|
+
key = f"install_{base}"
|
|
30
|
+
if key in install: # do not allow global configs to hijack venv paths
|
|
31
|
+
install.pop(key, None)
|
|
32
|
+
return result
|
|
33
|
+
|
|
34
|
+
dist.Distribution.parse_config_files = parse_config_files
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
# Import hook that patches some modules to ignore configuration values that break package installation in case
|
|
38
|
+
# of virtual environments.
|
|
39
|
+
_DISTUTILS_PATCH = "distutils.dist", "setuptools.dist"
|
|
40
|
+
# https://docs.python.org/3/library/importlib.html#setting-up-an-importer
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
class _Finder:
|
|
44
|
+
"""A meta path finder that allows patching the imported distutils modules."""
|
|
45
|
+
|
|
46
|
+
fullname = None
|
|
47
|
+
|
|
48
|
+
# lock[0] is threading.Lock(), but initialized lazily to avoid importing threading very early at startup,
|
|
49
|
+
# because there are gevent-based applications that need to be first to import threading by themselves.
|
|
50
|
+
# See https://github.com/pypa/virtualenv/issues/1895 for details.
|
|
51
|
+
lock = [] # noqa: RUF012
|
|
52
|
+
|
|
53
|
+
def find_spec(self, fullname, path, target=None): # noqa: ARG002
|
|
54
|
+
if fullname in _DISTUTILS_PATCH and self.fullname is None:
|
|
55
|
+
# initialize lock[0] lazily
|
|
56
|
+
if len(self.lock) == 0:
|
|
57
|
+
import threading
|
|
58
|
+
|
|
59
|
+
lock = threading.Lock()
|
|
60
|
+
# there is possibility that two threads T1 and T2 are simultaneously running into find_spec,
|
|
61
|
+
# observing .lock as empty, and further going into hereby initialization. However due to the GIL,
|
|
62
|
+
# list.append() operation is atomic and this way only one of the threads will "win" to put the lock
|
|
63
|
+
# - that every thread will use - into .lock[0].
|
|
64
|
+
# https://docs.python.org/3/faq/library.html#what-kinds-of-global-value-mutation-are-thread-safe
|
|
65
|
+
self.lock.append(lock)
|
|
66
|
+
|
|
67
|
+
from functools import partial
|
|
68
|
+
from importlib.util import find_spec
|
|
69
|
+
|
|
70
|
+
with self.lock[0]:
|
|
71
|
+
self.fullname = fullname
|
|
72
|
+
try:
|
|
73
|
+
spec = find_spec(fullname, path)
|
|
74
|
+
if spec is not None:
|
|
75
|
+
# https://www.python.org/dev/peps/pep-0451/#how-loading-will-work
|
|
76
|
+
is_new_api = hasattr(spec.loader, "exec_module")
|
|
77
|
+
func_name = "exec_module" if is_new_api else "load_module"
|
|
78
|
+
old = getattr(spec.loader, func_name)
|
|
79
|
+
func = self.exec_module if is_new_api else self.load_module
|
|
80
|
+
if old is not func:
|
|
81
|
+
with suppress(AttributeError): # C-Extension loaders are r/o such as zipimporter with <3.7
|
|
82
|
+
setattr(spec.loader, func_name, partial(func, old))
|
|
83
|
+
return spec
|
|
84
|
+
finally:
|
|
85
|
+
self.fullname = None
|
|
86
|
+
return None
|
|
87
|
+
|
|
88
|
+
@staticmethod
|
|
89
|
+
def exec_module(old, module):
|
|
90
|
+
old(module)
|
|
91
|
+
if module.__name__ in _DISTUTILS_PATCH:
|
|
92
|
+
patch_dist(module)
|
|
93
|
+
|
|
94
|
+
@staticmethod
|
|
95
|
+
def load_module(old, name):
|
|
96
|
+
module = old(name)
|
|
97
|
+
if module.__name__ in _DISTUTILS_PATCH:
|
|
98
|
+
patch_dist(module)
|
|
99
|
+
return module
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
sys.meta_path.insert(0, _Finder())
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"""
|
|
2
|
+
build - A simple, correct Python build frontend
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
from ._builder import ProjectBuilder
|
|
8
|
+
from ._exceptions import (
|
|
9
|
+
BuildBackendException,
|
|
10
|
+
BuildException,
|
|
11
|
+
BuildSystemTableValidationError,
|
|
12
|
+
FailedProcessError,
|
|
13
|
+
TypoWarning,
|
|
14
|
+
)
|
|
15
|
+
from ._types import ConfigSettings as ConfigSettingsType
|
|
16
|
+
from ._types import Distribution as DistributionType
|
|
17
|
+
from ._types import SubprocessRunner as RunnerType
|
|
18
|
+
from ._util import check_dependency
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
__version__ = '1.2.1'
|
|
22
|
+
|
|
23
|
+
__all__ = [
|
|
24
|
+
'__version__',
|
|
25
|
+
'BuildBackendException',
|
|
26
|
+
'BuildException',
|
|
27
|
+
'BuildSystemTableValidationError',
|
|
28
|
+
'check_dependency',
|
|
29
|
+
'ConfigSettingsType',
|
|
30
|
+
'DistributionType',
|
|
31
|
+
'FailedProcessError',
|
|
32
|
+
'ProjectBuilder',
|
|
33
|
+
'RunnerType',
|
|
34
|
+
'TypoWarning',
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def __dir__() -> list[str]:
|
|
39
|
+
return __all__
|