├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app.py ├── example_config ├── env │ └── includes │ │ ├── app_locations.yml │ │ └── settings │ │ ├── tk-cpenv.yml │ │ ├── tk-desktop.yml │ │ ├── tk-desktop2.yml │ │ ├── tk-multi-launchapp.yml │ │ └── tk-shotgun.yml └── hooks │ └── before_app_launch.py ├── icon_256.png ├── images ├── 1_add_new_environment.png ├── 1_site_prefs.png ├── 2_drag_and_drop_modules.png ├── 2_entities.png ├── 3_environment_entity.png ├── 3_module_entity.png ├── 3_preview_env_tool.png ├── 4_environment_fields.png ├── 4_module_fields.png ├── 4_permissions_tool.png ├── 5_environment_list.png ├── 5_module_list.png ├── env_selector.png ├── missing_fields.png ├── permissions_dialog.png ├── preview_env_dialog.png ├── set_modules_dialog.png └── shotgun_desktop_command.png ├── info.yml └── python ├── __init__.py ├── cpenv ├── __init__.py ├── __main__.py ├── _self_version_check.py ├── api.py ├── cli │ ├── __init__.py │ ├── activate.py │ ├── clone.py │ ├── copy.py │ ├── core.py │ ├── create.py │ ├── edit.py │ ├── env.py │ ├── info.py │ ├── list.py │ ├── localize.py │ ├── publish.py │ ├── remove.py │ ├── repo.py │ └── version.py ├── compat.py ├── environment.py ├── hooks.py ├── http.py ├── mappings.py ├── module.py ├── paths.py ├── reporter.py ├── repos │ ├── __init__.py │ ├── base.py │ ├── filesystem.py │ └── shotgun.py ├── resolver.py ├── shell.py ├── vendor │ ├── README.md │ ├── __init__.py │ ├── appdirs.py │ ├── cachetools.LICENSE │ ├── cachetools │ │ ├── __init__.py │ │ ├── abc.py │ │ ├── cache.py │ │ ├── func.py │ │ ├── keys.py │ │ ├── lfu.py │ │ ├── lru.py │ │ ├── rr.py │ │ └── ttl.py │ ├── certifi.LICENSE │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cacert.pem │ │ ├── core.py │ │ └── py.typed │ ├── fasteners │ │ ├── __init__.py │ │ ├── _utils.py │ │ ├── lock.py │ │ ├── process_lock.py │ │ ├── process_mechanism.py │ │ ├── pywin32 │ │ │ ├── __init__.py │ │ │ ├── pywintypes.py │ │ │ ├── win32con.py │ │ │ └── win32file.py │ │ └── version.py │ ├── shotgun_api3.LICENSE │ ├── shotgun_api3 │ │ ├── __init__.py │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── cacert.pem │ │ │ │ ├── core.py │ │ │ │ └── py.typed │ │ │ ├── httplib2 │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ ├── cacerts.txt │ │ │ │ ├── certs.py │ │ │ │ ├── error.py │ │ │ │ ├── iri2uri.py │ │ │ │ ├── python2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cacerts.txt │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── iri2uri.py │ │ │ │ │ └── socks.py │ │ │ │ ├── python3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cacerts.txt │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── iri2uri.py │ │ │ │ │ └── socks.py │ │ │ │ └── socks.py │ │ │ ├── mimetypes.py │ │ │ ├── mockgun │ │ │ │ ├── __init__.py │ │ │ │ ├── errors.py │ │ │ │ ├── mockgun.py │ │ │ │ └── schema.py │ │ │ ├── pyparsing.py │ │ │ ├── sgsix.py │ │ │ ├── sgtimezone.py │ │ │ └── six.py │ │ └── shotgun.py │ ├── terminalsize.py │ ├── yaml.LICENSE │ └── yaml │ │ ├── __init__.py │ │ ├── yaml2 │ │ ├── __init__.py │ │ ├── composer.py │ │ ├── constructor.py │ │ ├── cyaml.py │ │ ├── dumper.py │ │ ├── emitter.py │ │ ├── error.py │ │ ├── events.py │ │ ├── loader.py │ │ ├── nodes.py │ │ ├── parser.py │ │ ├── reader.py │ │ ├── representer.py │ │ ├── resolver.py │ │ ├── scanner.py │ │ ├── serializer.py │ │ └── tokens.py │ │ └── yaml3 │ │ ├── __init__.py │ │ ├── composer.py │ │ ├── constructor.py │ │ ├── cyaml.py │ │ ├── dumper.py │ │ ├── emitter.py │ │ ├── error.py │ │ ├── events.py │ │ ├── loader.py │ │ ├── nodes.py │ │ ├── parser.py │ │ ├── reader.py │ │ ├── representer.py │ │ ├── resolver.py │ │ ├── scanner.py │ │ ├── serializer.py │ │ └── tokens.py └── versions.py └── cpenv_ui ├── __init__.py ├── dialogs.py ├── env_display.py ├── env_importer.py ├── env_permissions.py ├── env_selector.py ├── env_tree.py ├── minimized_list.py ├── module_info.py ├── module_list.py ├── module_selector.py ├── notice.py ├── reporter.py └── res ├── __init__.py ├── add.png ├── clear.png ├── copy.png ├── edit.png ├── icon_256.png ├── icon_dark_256.png ├── import.png ├── lock.png ├── lock_open.png ├── missing.png ├── module_256.png ├── module_dark_256.png ├── preview.png └── remove.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/app.py -------------------------------------------------------------------------------- /example_config/env/includes/app_locations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/example_config/env/includes/app_locations.yml -------------------------------------------------------------------------------- /example_config/env/includes/settings/tk-cpenv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/example_config/env/includes/settings/tk-cpenv.yml -------------------------------------------------------------------------------- /example_config/env/includes/settings/tk-desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/example_config/env/includes/settings/tk-desktop.yml -------------------------------------------------------------------------------- /example_config/env/includes/settings/tk-desktop2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/example_config/env/includes/settings/tk-desktop2.yml -------------------------------------------------------------------------------- /example_config/env/includes/settings/tk-multi-launchapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/example_config/env/includes/settings/tk-multi-launchapp.yml -------------------------------------------------------------------------------- /example_config/env/includes/settings/tk-shotgun.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/example_config/env/includes/settings/tk-shotgun.yml -------------------------------------------------------------------------------- /example_config/hooks/before_app_launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/example_config/hooks/before_app_launch.py -------------------------------------------------------------------------------- /icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/icon_256.png -------------------------------------------------------------------------------- /images/1_add_new_environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/1_add_new_environment.png -------------------------------------------------------------------------------- /images/1_site_prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/1_site_prefs.png -------------------------------------------------------------------------------- /images/2_drag_and_drop_modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/2_drag_and_drop_modules.png -------------------------------------------------------------------------------- /images/2_entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/2_entities.png -------------------------------------------------------------------------------- /images/3_environment_entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/3_environment_entity.png -------------------------------------------------------------------------------- /images/3_module_entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/3_module_entity.png -------------------------------------------------------------------------------- /images/3_preview_env_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/3_preview_env_tool.png -------------------------------------------------------------------------------- /images/4_environment_fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/4_environment_fields.png -------------------------------------------------------------------------------- /images/4_module_fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/4_module_fields.png -------------------------------------------------------------------------------- /images/4_permissions_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/4_permissions_tool.png -------------------------------------------------------------------------------- /images/5_environment_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/5_environment_list.png -------------------------------------------------------------------------------- /images/5_module_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/5_module_list.png -------------------------------------------------------------------------------- /images/env_selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/env_selector.png -------------------------------------------------------------------------------- /images/missing_fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/missing_fields.png -------------------------------------------------------------------------------- /images/permissions_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/permissions_dialog.png -------------------------------------------------------------------------------- /images/preview_env_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/preview_env_dialog.png -------------------------------------------------------------------------------- /images/set_modules_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/set_modules_dialog.png -------------------------------------------------------------------------------- /images/shotgun_desktop_command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/images/shotgun_desktop_command.png -------------------------------------------------------------------------------- /info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/info.yml -------------------------------------------------------------------------------- /python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/__init__.py -------------------------------------------------------------------------------- /python/cpenv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/__init__.py -------------------------------------------------------------------------------- /python/cpenv/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/__main__.py -------------------------------------------------------------------------------- /python/cpenv/_self_version_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/_self_version_check.py -------------------------------------------------------------------------------- /python/cpenv/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/api.py -------------------------------------------------------------------------------- /python/cpenv/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/__init__.py -------------------------------------------------------------------------------- /python/cpenv/cli/activate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/activate.py -------------------------------------------------------------------------------- /python/cpenv/cli/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/clone.py -------------------------------------------------------------------------------- /python/cpenv/cli/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/copy.py -------------------------------------------------------------------------------- /python/cpenv/cli/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/core.py -------------------------------------------------------------------------------- /python/cpenv/cli/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/create.py -------------------------------------------------------------------------------- /python/cpenv/cli/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/edit.py -------------------------------------------------------------------------------- /python/cpenv/cli/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/env.py -------------------------------------------------------------------------------- /python/cpenv/cli/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/info.py -------------------------------------------------------------------------------- /python/cpenv/cli/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/list.py -------------------------------------------------------------------------------- /python/cpenv/cli/localize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/localize.py -------------------------------------------------------------------------------- /python/cpenv/cli/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/publish.py -------------------------------------------------------------------------------- /python/cpenv/cli/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/remove.py -------------------------------------------------------------------------------- /python/cpenv/cli/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/repo.py -------------------------------------------------------------------------------- /python/cpenv/cli/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/cli/version.py -------------------------------------------------------------------------------- /python/cpenv/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/compat.py -------------------------------------------------------------------------------- /python/cpenv/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/environment.py -------------------------------------------------------------------------------- /python/cpenv/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/hooks.py -------------------------------------------------------------------------------- /python/cpenv/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/http.py -------------------------------------------------------------------------------- /python/cpenv/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/mappings.py -------------------------------------------------------------------------------- /python/cpenv/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/module.py -------------------------------------------------------------------------------- /python/cpenv/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/paths.py -------------------------------------------------------------------------------- /python/cpenv/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/reporter.py -------------------------------------------------------------------------------- /python/cpenv/repos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/repos/__init__.py -------------------------------------------------------------------------------- /python/cpenv/repos/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/repos/base.py -------------------------------------------------------------------------------- /python/cpenv/repos/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/repos/filesystem.py -------------------------------------------------------------------------------- /python/cpenv/repos/shotgun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/repos/shotgun.py -------------------------------------------------------------------------------- /python/cpenv/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/resolver.py -------------------------------------------------------------------------------- /python/cpenv/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/shell.py -------------------------------------------------------------------------------- /python/cpenv/vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/README.md -------------------------------------------------------------------------------- /python/cpenv/vendor/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /python/cpenv/vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/appdirs.py -------------------------------------------------------------------------------- /python/cpenv/vendor/cachetools.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/cachetools.LICENSE -------------------------------------------------------------------------------- /python/cpenv/vendor/cachetools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/cachetools/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/cachetools/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/cachetools/abc.py -------------------------------------------------------------------------------- /python/cpenv/vendor/cachetools/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/cachetools/cache.py -------------------------------------------------------------------------------- /python/cpenv/vendor/cachetools/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/cachetools/func.py -------------------------------------------------------------------------------- /python/cpenv/vendor/cachetools/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/cachetools/keys.py -------------------------------------------------------------------------------- /python/cpenv/vendor/cachetools/lfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/cachetools/lfu.py -------------------------------------------------------------------------------- /python/cpenv/vendor/cachetools/lru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/cachetools/lru.py -------------------------------------------------------------------------------- /python/cpenv/vendor/cachetools/rr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/cachetools/rr.py -------------------------------------------------------------------------------- /python/cpenv/vendor/cachetools/ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/cachetools/ttl.py -------------------------------------------------------------------------------- /python/cpenv/vendor/certifi.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/certifi.LICENSE -------------------------------------------------------------------------------- /python/cpenv/vendor/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/certifi/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/certifi/__main__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /python/cpenv/vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/certifi/core.py -------------------------------------------------------------------------------- /python/cpenv/vendor/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/cpenv/vendor/fasteners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/fasteners/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/fasteners/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/fasteners/_utils.py -------------------------------------------------------------------------------- /python/cpenv/vendor/fasteners/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/fasteners/lock.py -------------------------------------------------------------------------------- /python/cpenv/vendor/fasteners/process_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/fasteners/process_lock.py -------------------------------------------------------------------------------- /python/cpenv/vendor/fasteners/process_mechanism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/fasteners/process_mechanism.py -------------------------------------------------------------------------------- /python/cpenv/vendor/fasteners/pywin32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/fasteners/pywin32/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/fasteners/pywin32/pywintypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/fasteners/pywin32/pywintypes.py -------------------------------------------------------------------------------- /python/cpenv/vendor/fasteners/pywin32/win32con.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/fasteners/pywin32/win32con.py -------------------------------------------------------------------------------- /python/cpenv/vendor/fasteners/pywin32/win32file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/fasteners/pywin32/win32file.py -------------------------------------------------------------------------------- /python/cpenv/vendor/fasteners/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/fasteners/version.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3.LICENSE -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/certifi/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/certifi/__main__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/certifi/cacert.pem -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/certifi/core.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/auth.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/cacerts.txt -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/certs.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/error.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/iri2uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/iri2uri.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/auth.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/cacerts.txt -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/certs.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/error.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/iri2uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/iri2uri.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python2/socks.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/auth.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/cacerts.txt -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/certs.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/error.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/iri2uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/iri2uri.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/python3/socks.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/httplib2/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/httplib2/socks.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/mimetypes.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/mockgun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/mockgun/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/mockgun/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/mockgun/errors.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/mockgun/mockgun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/mockgun/mockgun.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/mockgun/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/mockgun/schema.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/pyparsing.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/sgsix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/sgsix.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/sgtimezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/sgtimezone.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/lib/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/lib/six.py -------------------------------------------------------------------------------- /python/cpenv/vendor/shotgun_api3/shotgun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/shotgun_api3/shotgun.py -------------------------------------------------------------------------------- /python/cpenv/vendor/terminalsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/terminalsize.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml.LICENSE -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/composer.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/constructor.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/cyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/cyaml.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/dumper.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/emitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/emitter.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/error.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/events.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/loader.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/nodes.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/parser.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/reader.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/representer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/representer.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/resolver.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/scanner.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/serializer.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml2/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml2/tokens.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/__init__.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/composer.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/constructor.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/cyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/cyaml.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/dumper.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/emitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/emitter.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/error.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/events.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/loader.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/nodes.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/parser.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/reader.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/representer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/representer.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/resolver.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/scanner.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/serializer.py -------------------------------------------------------------------------------- /python/cpenv/vendor/yaml/yaml3/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/vendor/yaml/yaml3/tokens.py -------------------------------------------------------------------------------- /python/cpenv/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv/versions.py -------------------------------------------------------------------------------- /python/cpenv_ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/__init__.py -------------------------------------------------------------------------------- /python/cpenv_ui/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/dialogs.py -------------------------------------------------------------------------------- /python/cpenv_ui/env_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/env_display.py -------------------------------------------------------------------------------- /python/cpenv_ui/env_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/env_importer.py -------------------------------------------------------------------------------- /python/cpenv_ui/env_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/env_permissions.py -------------------------------------------------------------------------------- /python/cpenv_ui/env_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/env_selector.py -------------------------------------------------------------------------------- /python/cpenv_ui/env_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/env_tree.py -------------------------------------------------------------------------------- /python/cpenv_ui/minimized_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/minimized_list.py -------------------------------------------------------------------------------- /python/cpenv_ui/module_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/module_info.py -------------------------------------------------------------------------------- /python/cpenv_ui/module_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/module_list.py -------------------------------------------------------------------------------- /python/cpenv_ui/module_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/module_selector.py -------------------------------------------------------------------------------- /python/cpenv_ui/notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/notice.py -------------------------------------------------------------------------------- /python/cpenv_ui/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/reporter.py -------------------------------------------------------------------------------- /python/cpenv_ui/res/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/__init__.py -------------------------------------------------------------------------------- /python/cpenv_ui/res/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/add.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/clear.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/copy.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/edit.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/icon_256.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/icon_dark_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/icon_dark_256.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/import.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/lock.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/lock_open.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/missing.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/module_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/module_256.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/module_dark_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/module_dark_256.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/preview.png -------------------------------------------------------------------------------- /python/cpenv_ui/res/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpenv/tk-cpenv/HEAD/python/cpenv_ui/res/remove.png --------------------------------------------------------------------------------