├── README.md ├── isort_black ├── .isort.cfg ├── README.md ├── bin │ └── isort_black └── package.py ├── move_break ├── README.md ├── package.py ├── python │ └── move_break │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cli.py │ │ ├── core │ │ ├── __init__.py │ │ ├── import_helper.py │ │ ├── import_registry.py │ │ ├── parser.py │ │ └── parsers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── import_adapter.py │ │ │ ├── import_from_adapter.py │ │ │ └── import_name_adapter.py │ │ ├── finder.py │ │ ├── move_break_api.py │ │ └── mover.py └── tests │ ├── __init__.py │ ├── common.py │ ├── test_misc.py │ └── test_run.py ├── parso_helper ├── package.py ├── python │ └── parso_helper │ │ ├── __init__.py │ │ └── node_seek.py └── tests │ ├── __init__.py │ └── test_node_seek.py ├── rez_batch_plugins ├── README.md ├── package.py ├── python │ └── rez_batch_plugins │ │ ├── __init__.py │ │ ├── plugins │ │ ├── __init__.py │ │ ├── bump.py │ │ ├── move_imports.py │ │ └── yaml2py.py │ │ └── repository_area.py └── tests │ ├── __init__.py │ └── test_run.py ├── rez_batch_process ├── README.md ├── package.py ├── python │ └── rez_batch_process │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cli.py │ │ └── core │ │ ├── __init__.py │ │ ├── cli_constant.py │ │ ├── exceptions.py │ │ ├── gitter │ │ ├── __init__.py │ │ ├── base_adapter.py │ │ ├── git_link.py │ │ ├── git_registry.py │ │ ├── github_link.py │ │ └── github_user.py │ │ ├── plugins │ │ ├── __init__.py │ │ ├── base.py │ │ ├── command.py │ │ └── conditional.py │ │ ├── registry.py │ │ ├── rez_git.py │ │ └── worker.py └── tests │ ├── __init__.py │ ├── package_common.py │ ├── test_documentation.py │ └── test_run.py ├── rez_build_helper ├── .pylintrc ├── README.md ├── fake_bin │ ├── hotl │ └── hotl.bat ├── mypy.ini ├── package.py ├── python │ └── rez_build_helper │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── argparse_action.py │ │ ├── cli.py │ │ ├── exceptions.py │ │ ├── filer.py │ │ ├── linker.py │ │ └── namespacer.py ├── rezbuild.py └── tests │ ├── __init__.py │ ├── common │ ├── __init__.py │ ├── common.py │ ├── creator.py │ ├── finder.py │ ├── pymix.py │ ├── rez_configuration.py │ └── silencer.py │ ├── test_cli.py │ ├── test_egg.py │ └── test_hda.py ├── rez_bump ├── package.py ├── python │ └── rez_bump │ │ ├── __init__.py │ │ ├── core │ │ ├── __init__.py │ │ └── increment.py │ │ └── rez_bump_api.py └── tests │ ├── __init__.py │ └── test_increment.py ├── rez_dependency ├── README.md ├── _test_data │ ├── simple_packages │ │ ├── contains_ephemeral │ │ │ └── 1.0.0 │ │ │ │ └── package.py │ │ ├── empty │ │ │ └── 1.0.0 │ │ │ │ └── package.py │ │ ├── has_conflict_package │ │ │ └── 1.0.0 │ │ │ │ └── package.py │ │ ├── has_dependency │ │ │ └── 1.0.0 │ │ │ │ └── package.py │ │ ├── nested │ │ │ └── 1.0.0 │ │ │ │ └── package.py │ │ └── parent_package │ │ │ └── 1.0.0 │ │ │ └── package.py │ └── variant_example │ │ ├── empty │ │ └── 1.0.0 │ │ │ └── package.py │ │ ├── has_dependency │ │ └── 1.0.0 │ │ │ └── package.py │ │ ├── nested │ │ └── 1.0.0 │ │ │ └── package.py │ │ ├── parent_package │ │ └── 1.0.0 │ │ │ └── package.py │ │ └── some_package │ │ └── 1.0.0 │ │ └── package.py ├── bin │ └── rez_dependency ├── package.py ├── python │ └── rez_dependency │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _core │ │ ├── __init__.py │ │ ├── _display_tree.py │ │ ├── cli_helper.py │ │ ├── display_levels.py │ │ ├── display_list.py │ │ ├── display_tree.py │ │ ├── exception.py │ │ ├── streamer.py │ │ └── tree_accumulator.py │ │ └── cli.py └── tests │ ├── __init__.py │ └── test_cli.py ├── rez_documentation_check ├── README.md ├── bin │ └── rez_documentation_check ├── documentation │ ├── Makefile │ ├── make.bat │ └── source │ │ ├── api │ │ ├── modules.rst │ │ ├── rez_documentation_check.api.rst │ │ ├── rez_documentation_check.cli.rst │ │ ├── rez_documentation_check.core.check_constant.rst │ │ ├── rez_documentation_check.core.exceptions.rst │ │ ├── rez_documentation_check.core.rst │ │ ├── rez_documentation_check.core.sphinx_convention.rst │ │ ├── rez_documentation_check.core.sphinx_helper.rst │ │ └── rez_documentation_check.rst │ │ ├── api_documentation.rst │ │ ├── conf.py │ │ ├── how_it_works.rst │ │ └── index.rst ├── package.py ├── python │ └── rez_documentation_check │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── api.py │ │ ├── cli.py │ │ └── core │ │ ├── __init__.py │ │ ├── check_constant.py │ │ ├── exceptions.py │ │ ├── sphinx_convention.py │ │ └── sphinx_helper.py └── tests │ ├── __init__.py │ ├── common.py │ ├── project.py │ ├── test_conf_replace.py │ └── test_run.py ├── rez_industry ├── README.md ├── package.py ├── python │ └── rez_industry │ │ ├── __init__.py │ │ ├── api.py │ │ └── core │ │ ├── __init__.py │ │ ├── adapters │ │ ├── __init__.py │ │ ├── base.py │ │ ├── help_adapter.py │ │ ├── requires_adapter.py │ │ └── tests_adapter.py │ │ ├── convention.py │ │ ├── encoder.py │ │ ├── parser.py │ │ └── parso_utility.py └── tests │ ├── __init__.py │ ├── test_help.py │ └── test_replace.py ├── rez_lint ├── README.md ├── bin │ └── rez_lint ├── package.py ├── python │ └── rez_lint │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cli.py │ │ ├── core │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── exit_code.py │ │ ├── lint_constant.py │ │ ├── message_description.py │ │ ├── package_parser.py │ │ ├── parso_comment_helper.py │ │ ├── registry.py │ │ └── resource_utilities.py │ │ └── plugins │ │ ├── __init__.py │ │ ├── check_context.py │ │ ├── checkers │ │ ├── __init__.py │ │ ├── base_checker.py │ │ ├── conventions.py │ │ ├── dangers.py │ │ ├── explains.py │ │ └── explains_comment.py │ │ └── contexts │ │ ├── __init__.py │ │ ├── base_context.py │ │ ├── packaging.py │ │ └── parsing.py └── tests │ ├── __init__.py │ ├── checkers │ ├── __init__.py │ ├── test_conventions.py │ ├── test_dangers.py │ ├── test_explains.py │ └── test_explains_comment.py │ ├── contexts │ ├── __init__.py │ └── test_packaging.py │ ├── packaging.py │ ├── test_cli.py │ ├── test_formatting.py │ ├── test_general.py │ └── test_registry.py ├── rez_move_imports ├── README.md ├── package.py ├── python │ └── rez_move_imports │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cli.py │ │ └── core │ │ ├── __init__.py │ │ ├── exception.py │ │ └── replacer.py └── tests │ ├── __init__.py │ ├── test_cli.py │ ├── test_replace_dependency.py │ └── test_run.py ├── rez_pip_boy ├── .pylintrc ├── README.md ├── bin │ └── rez_pip_boy ├── package.py ├── python │ └── rez_pip_boy │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cli.py │ │ └── core │ │ ├── __init__.py │ │ ├── _build_command.py │ │ ├── builder.py │ │ ├── exceptions.py │ │ ├── filer.py │ │ ├── hashed_variant.py │ │ └── pather.py ├── setup.cfg └── tests │ ├── __init__.py │ └── test_run.py ├── rez_python_compatibility ├── .pylintrc ├── README.md ├── package.py ├── python │ └── python_compatibility │ │ ├── __init__.py │ │ ├── dependency_analyzer.py │ │ ├── filer.py │ │ ├── import_parser.py │ │ ├── imports.py │ │ ├── iterbot.py │ │ ├── packaging.py │ │ ├── pathrip.py │ │ ├── sphinx │ │ ├── __init__.py │ │ ├── conf_manager.py │ │ └── exceptions.py │ │ ├── testing │ │ ├── __init__.py │ │ ├── common.py │ │ ├── contextual.py │ │ └── package_tester.py │ │ ├── website.py │ │ └── wrapping.py └── tests │ ├── __init__.py │ ├── test_contextual.py │ ├── test_filer.py │ ├── test_import_parser.py │ ├── test_imports.py │ ├── test_iterbot.py │ ├── test_pathrip.py │ ├── test_testing_common.py │ ├── test_website.py │ └── test_wrapping.py ├── rez_symbl ├── README.md ├── package.py ├── python │ └── rez_symbl │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── api.py │ │ ├── cli.py │ │ └── core │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── linker.py │ │ └── pather.py └── tests │ ├── __init__.py │ └── test_run.py ├── rez_test_env ├── README.md ├── bin │ └── rez_test_env ├── package.py ├── python │ └── rez_test_env │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cli.py │ │ └── core │ │ ├── __init__.py │ │ ├── environment.py │ │ └── exceptions.py └── tests │ ├── __init__.py │ └── test_run.py ├── rez_utilities ├── .pylintrc ├── README.md ├── package.py ├── python │ └── rez_utilities │ │ ├── __init__.py │ │ ├── creator.py │ │ ├── finder.py │ │ ├── help_manager.py │ │ ├── inspection.py │ │ ├── plugins │ │ ├── __init__.py │ │ ├── registry.py │ │ └── url_manager.py │ │ ├── rez_configuration.py │ │ ├── silencer.py │ │ └── url_help.py └── tests │ ├── __init__.py │ ├── common │ ├── __init__.py │ └── pather.py │ ├── test_creator.py │ ├── test_finder.py │ ├── test_help_manager.py │ ├── test_inspection.py │ └── test_url_help.py ├── rez_utilities_git ├── package.py └── python │ └── rez_utilities_git │ ├── __init__.py │ ├── gitter.py │ └── testify.py └── sphinx_apidoc_check ├── CHANGELOG.rst ├── README.md ├── bin └── sphinx_apidoc_check ├── documentation ├── Makefile ├── make.bat └── source │ ├── api │ ├── modules.rst │ ├── sphinx_apidoc_check.cli.rst │ ├── sphinx_apidoc_check.core.apidoc_patcher.rst │ ├── sphinx_apidoc_check.core.check_constant.rst │ ├── sphinx_apidoc_check.core.check_exception.rst │ ├── sphinx_apidoc_check.core.rst │ └── sphinx_apidoc_check.rst │ ├── conf.py │ └── index.rst ├── package.py ├── python └── sphinx_apidoc_check │ ├── __init__.py │ ├── __main__.py │ ├── cli.py │ └── core │ ├── __init__.py │ ├── apidoc_patcher.py │ ├── check_constant.py │ └── check_exception.py └── tests ├── __init__.py └── test_run.py /README.md: -------------------------------------------------------------------------------- 1 | Some packages have good coverage, others are still WIP. 2 | -------------------------------------------------------------------------------- /isort_black/.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/isort_black/.isort.cfg -------------------------------------------------------------------------------- /isort_black/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/isort_black/README.md -------------------------------------------------------------------------------- /isort_black/bin/isort_black: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/isort_black/bin/isort_black -------------------------------------------------------------------------------- /isort_black/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/isort_black/package.py -------------------------------------------------------------------------------- /move_break/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/README.md -------------------------------------------------------------------------------- /move_break/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/package.py -------------------------------------------------------------------------------- /move_break/python/move_break/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/__init__.py -------------------------------------------------------------------------------- /move_break/python/move_break/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/__main__.py -------------------------------------------------------------------------------- /move_break/python/move_break/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/cli.py -------------------------------------------------------------------------------- /move_break/python/move_break/core/__init__.py: -------------------------------------------------------------------------------- 1 | """All of the "non-API" classes and functions of `move_break`.""" 2 | -------------------------------------------------------------------------------- /move_break/python/move_break/core/import_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/core/import_helper.py -------------------------------------------------------------------------------- /move_break/python/move_break/core/import_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/core/import_registry.py -------------------------------------------------------------------------------- /move_break/python/move_break/core/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/core/parser.py -------------------------------------------------------------------------------- /move_break/python/move_break/core/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/core/parsers/__init__.py -------------------------------------------------------------------------------- /move_break/python/move_break/core/parsers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/core/parsers/base.py -------------------------------------------------------------------------------- /move_break/python/move_break/core/parsers/import_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/core/parsers/import_adapter.py -------------------------------------------------------------------------------- /move_break/python/move_break/core/parsers/import_from_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/core/parsers/import_from_adapter.py -------------------------------------------------------------------------------- /move_break/python/move_break/core/parsers/import_name_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/core/parsers/import_name_adapter.py -------------------------------------------------------------------------------- /move_break/python/move_break/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/finder.py -------------------------------------------------------------------------------- /move_break/python/move_break/move_break_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/move_break_api.py -------------------------------------------------------------------------------- /move_break/python/move_break/mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/python/move_break/mover.py -------------------------------------------------------------------------------- /move_break/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """All of the tests for ``move_break``.""" 2 | -------------------------------------------------------------------------------- /move_break/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/tests/common.py -------------------------------------------------------------------------------- /move_break/tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/tests/test_misc.py -------------------------------------------------------------------------------- /move_break/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/move_break/tests/test_run.py -------------------------------------------------------------------------------- /parso_helper/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/parso_helper/package.py -------------------------------------------------------------------------------- /parso_helper/python/parso_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/parso_helper/python/parso_helper/__init__.py -------------------------------------------------------------------------------- /parso_helper/python/parso_helper/node_seek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/parso_helper/python/parso_helper/node_seek.py -------------------------------------------------------------------------------- /parso_helper/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """All tests for :mod:`parso_helper`.""" 2 | -------------------------------------------------------------------------------- /parso_helper/tests/test_node_seek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/parso_helper/tests/test_node_seek.py -------------------------------------------------------------------------------- /rez_batch_plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_plugins/README.md -------------------------------------------------------------------------------- /rez_batch_plugins/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_plugins/package.py -------------------------------------------------------------------------------- /rez_batch_plugins/python/rez_batch_plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_plugins/python/rez_batch_plugins/__init__.py -------------------------------------------------------------------------------- /rez_batch_plugins/python/rez_batch_plugins/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | """A collection of useful commands for ``rez_batch_process``.""" 2 | -------------------------------------------------------------------------------- /rez_batch_plugins/python/rez_batch_plugins/plugins/bump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_plugins/python/rez_batch_plugins/plugins/bump.py -------------------------------------------------------------------------------- /rez_batch_plugins/python/rez_batch_plugins/plugins/move_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_plugins/python/rez_batch_plugins/plugins/move_imports.py -------------------------------------------------------------------------------- /rez_batch_plugins/python/rez_batch_plugins/plugins/yaml2py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_plugins/python/rez_batch_plugins/plugins/yaml2py.py -------------------------------------------------------------------------------- /rez_batch_plugins/python/rez_batch_plugins/repository_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_plugins/python/rez_batch_plugins/repository_area.py -------------------------------------------------------------------------------- /rez_batch_plugins/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_plugins/tests/__init__.py -------------------------------------------------------------------------------- /rez_batch_plugins/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_plugins/tests/test_run.py -------------------------------------------------------------------------------- /rez_batch_process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/README.md -------------------------------------------------------------------------------- /rez_batch_process/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/package.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/__init__.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/__main__.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/cli.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/__init__.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/cli_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/cli_constant.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/exceptions.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/gitter/__init__.py: -------------------------------------------------------------------------------- 1 | """Git / GitHub related modules.""" 2 | -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/gitter/base_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/gitter/base_adapter.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/gitter/git_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/gitter/git_link.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/gitter/git_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/gitter/git_registry.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/gitter/github_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/gitter/github_link.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/gitter/github_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/gitter/github_user.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/plugins/__init__.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/plugins/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/plugins/base.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/plugins/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/plugins/command.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/plugins/conditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/plugins/conditional.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/registry.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/rez_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/rez_git.py -------------------------------------------------------------------------------- /rez_batch_process/python/rez_batch_process/core/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/python/rez_batch_process/core/worker.py -------------------------------------------------------------------------------- /rez_batch_process/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/tests/__init__.py -------------------------------------------------------------------------------- /rez_batch_process/tests/package_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/tests/package_common.py -------------------------------------------------------------------------------- /rez_batch_process/tests/test_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/tests/test_documentation.py -------------------------------------------------------------------------------- /rez_batch_process/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_batch_process/tests/test_run.py -------------------------------------------------------------------------------- /rez_build_helper/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/.pylintrc -------------------------------------------------------------------------------- /rez_build_helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/README.md -------------------------------------------------------------------------------- /rez_build_helper/fake_bin/hotl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/fake_bin/hotl -------------------------------------------------------------------------------- /rez_build_helper/fake_bin/hotl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/fake_bin/hotl.bat -------------------------------------------------------------------------------- /rez_build_helper/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/mypy.ini -------------------------------------------------------------------------------- /rez_build_helper/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/package.py -------------------------------------------------------------------------------- /rez_build_helper/python/rez_build_helper/__init__.py: -------------------------------------------------------------------------------- 1 | """The core CLI modules for :mod:`rez_build_helper`.""" 2 | -------------------------------------------------------------------------------- /rez_build_helper/python/rez_build_helper/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/python/rez_build_helper/__main__.py -------------------------------------------------------------------------------- /rez_build_helper/python/rez_build_helper/argparse_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/python/rez_build_helper/argparse_action.py -------------------------------------------------------------------------------- /rez_build_helper/python/rez_build_helper/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/python/rez_build_helper/cli.py -------------------------------------------------------------------------------- /rez_build_helper/python/rez_build_helper/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/python/rez_build_helper/exceptions.py -------------------------------------------------------------------------------- /rez_build_helper/python/rez_build_helper/filer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/python/rez_build_helper/filer.py -------------------------------------------------------------------------------- /rez_build_helper/python/rez_build_helper/linker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/python/rez_build_helper/linker.py -------------------------------------------------------------------------------- /rez_build_helper/python/rez_build_helper/namespacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/python/rez_build_helper/namespacer.py -------------------------------------------------------------------------------- /rez_build_helper/rezbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/rezbuild.py -------------------------------------------------------------------------------- /rez_build_helper/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/tests/__init__.py -------------------------------------------------------------------------------- /rez_build_helper/tests/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/tests/common/__init__.py -------------------------------------------------------------------------------- /rez_build_helper/tests/common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/tests/common/common.py -------------------------------------------------------------------------------- /rez_build_helper/tests/common/creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/tests/common/creator.py -------------------------------------------------------------------------------- /rez_build_helper/tests/common/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/tests/common/finder.py -------------------------------------------------------------------------------- /rez_build_helper/tests/common/pymix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/tests/common/pymix.py -------------------------------------------------------------------------------- /rez_build_helper/tests/common/rez_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/tests/common/rez_configuration.py -------------------------------------------------------------------------------- /rez_build_helper/tests/common/silencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/tests/common/silencer.py -------------------------------------------------------------------------------- /rez_build_helper/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/tests/test_cli.py -------------------------------------------------------------------------------- /rez_build_helper/tests/test_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/tests/test_egg.py -------------------------------------------------------------------------------- /rez_build_helper/tests/test_hda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_build_helper/tests/test_hda.py -------------------------------------------------------------------------------- /rez_bump/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_bump/package.py -------------------------------------------------------------------------------- /rez_bump/python/rez_bump/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_bump/python/rez_bump/__init__.py -------------------------------------------------------------------------------- /rez_bump/python/rez_bump/core/__init__.py: -------------------------------------------------------------------------------- 1 | """All non-API modules.""" 2 | -------------------------------------------------------------------------------- /rez_bump/python/rez_bump/core/increment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_bump/python/rez_bump/core/increment.py -------------------------------------------------------------------------------- /rez_bump/python/rez_bump/rez_bump_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_bump/python/rez_bump/rez_bump_api.py -------------------------------------------------------------------------------- /rez_bump/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """All of the tests for :mod:`rez_bump`.""" 2 | -------------------------------------------------------------------------------- /rez_bump/tests/test_increment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_bump/tests/test_increment.py -------------------------------------------------------------------------------- /rez_dependency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/README.md -------------------------------------------------------------------------------- /rez_dependency/_test_data/simple_packages/contains_ephemeral/1.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/_test_data/simple_packages/contains_ephemeral/1.0.0/package.py -------------------------------------------------------------------------------- /rez_dependency/_test_data/simple_packages/empty/1.0.0/package.py: -------------------------------------------------------------------------------- 1 | name = "empty" 2 | 3 | version = "1.0.0" 4 | -------------------------------------------------------------------------------- /rez_dependency/_test_data/simple_packages/has_conflict_package/1.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/_test_data/simple_packages/has_conflict_package/1.0.0/package.py -------------------------------------------------------------------------------- /rez_dependency/_test_data/simple_packages/has_dependency/1.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/_test_data/simple_packages/has_dependency/1.0.0/package.py -------------------------------------------------------------------------------- /rez_dependency/_test_data/simple_packages/nested/1.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/_test_data/simple_packages/nested/1.0.0/package.py -------------------------------------------------------------------------------- /rez_dependency/_test_data/simple_packages/parent_package/1.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/_test_data/simple_packages/parent_package/1.0.0/package.py -------------------------------------------------------------------------------- /rez_dependency/_test_data/variant_example/empty/1.0.0/package.py: -------------------------------------------------------------------------------- 1 | name = "empty" 2 | 3 | version = "1.0.0" 4 | -------------------------------------------------------------------------------- /rez_dependency/_test_data/variant_example/has_dependency/1.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/_test_data/variant_example/has_dependency/1.0.0/package.py -------------------------------------------------------------------------------- /rez_dependency/_test_data/variant_example/nested/1.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/_test_data/variant_example/nested/1.0.0/package.py -------------------------------------------------------------------------------- /rez_dependency/_test_data/variant_example/parent_package/1.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/_test_data/variant_example/parent_package/1.0.0/package.py -------------------------------------------------------------------------------- /rez_dependency/_test_data/variant_example/some_package/1.0.0/package.py: -------------------------------------------------------------------------------- 1 | name = "some_package" 2 | 3 | version = "1.0.0" 4 | -------------------------------------------------------------------------------- /rez_dependency/bin/rez_dependency: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | python -m rez_dependency $@ 4 | -------------------------------------------------------------------------------- /rez_dependency/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/package.py -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/__init__.py: -------------------------------------------------------------------------------- 1 | """All public and private modules for :mod:`rez_dependency`.""" 2 | -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/python/rez_dependency/__main__.py -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/_core/__init__.py: -------------------------------------------------------------------------------- 1 | """All private modules for :mod:`rez_dependency`.""" 2 | -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/_core/_display_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/python/rez_dependency/_core/_display_tree.py -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/_core/cli_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/python/rez_dependency/_core/cli_helper.py -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/_core/display_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/python/rez_dependency/_core/display_levels.py -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/_core/display_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/python/rez_dependency/_core/display_list.py -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/_core/display_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/python/rez_dependency/_core/display_tree.py -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/_core/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/python/rez_dependency/_core/exception.py -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/_core/streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/python/rez_dependency/_core/streamer.py -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/_core/tree_accumulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/python/rez_dependency/_core/tree_accumulator.py -------------------------------------------------------------------------------- /rez_dependency/python/rez_dependency/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/python/rez_dependency/cli.py -------------------------------------------------------------------------------- /rez_dependency/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/tests/__init__.py -------------------------------------------------------------------------------- /rez_dependency/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_dependency/tests/test_cli.py -------------------------------------------------------------------------------- /rez_documentation_check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/README.md -------------------------------------------------------------------------------- /rez_documentation_check/bin/rez_documentation_check: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | python -u -m rez_documentation_check $@ 4 | -------------------------------------------------------------------------------- /rez_documentation_check/documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/Makefile -------------------------------------------------------------------------------- /rez_documentation_check/documentation/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/make.bat -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/api/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/api/modules.rst -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/api/rez_documentation_check.api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/api/rez_documentation_check.api.rst -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/api/rez_documentation_check.cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/api/rez_documentation_check.cli.rst -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/api/rez_documentation_check.core.check_constant.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/api/rez_documentation_check.core.check_constant.rst -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/api/rez_documentation_check.core.exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/api/rez_documentation_check.core.exceptions.rst -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/api/rez_documentation_check.core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/api/rez_documentation_check.core.rst -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/api/rez_documentation_check.core.sphinx_convention.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/api/rez_documentation_check.core.sphinx_convention.rst -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/api/rez_documentation_check.core.sphinx_helper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/api/rez_documentation_check.core.sphinx_helper.rst -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/api/rez_documentation_check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/api/rez_documentation_check.rst -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/api_documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/api_documentation.rst -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/conf.py -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/how_it_works.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/how_it_works.rst -------------------------------------------------------------------------------- /rez_documentation_check/documentation/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/documentation/source/index.rst -------------------------------------------------------------------------------- /rez_documentation_check/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/package.py -------------------------------------------------------------------------------- /rez_documentation_check/python/rez_documentation_check/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/python/rez_documentation_check/__init__.py -------------------------------------------------------------------------------- /rez_documentation_check/python/rez_documentation_check/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/python/rez_documentation_check/__main__.py -------------------------------------------------------------------------------- /rez_documentation_check/python/rez_documentation_check/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/python/rez_documentation_check/api.py -------------------------------------------------------------------------------- /rez_documentation_check/python/rez_documentation_check/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/python/rez_documentation_check/cli.py -------------------------------------------------------------------------------- /rez_documentation_check/python/rez_documentation_check/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/python/rez_documentation_check/core/__init__.py -------------------------------------------------------------------------------- /rez_documentation_check/python/rez_documentation_check/core/check_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/python/rez_documentation_check/core/check_constant.py -------------------------------------------------------------------------------- /rez_documentation_check/python/rez_documentation_check/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/python/rez_documentation_check/core/exceptions.py -------------------------------------------------------------------------------- /rez_documentation_check/python/rez_documentation_check/core/sphinx_convention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/python/rez_documentation_check/core/sphinx_convention.py -------------------------------------------------------------------------------- /rez_documentation_check/python/rez_documentation_check/core/sphinx_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/python/rez_documentation_check/core/sphinx_helper.py -------------------------------------------------------------------------------- /rez_documentation_check/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/tests/__init__.py -------------------------------------------------------------------------------- /rez_documentation_check/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/tests/common.py -------------------------------------------------------------------------------- /rez_documentation_check/tests/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/tests/project.py -------------------------------------------------------------------------------- /rez_documentation_check/tests/test_conf_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/tests/test_conf_replace.py -------------------------------------------------------------------------------- /rez_documentation_check/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_documentation_check/tests/test_run.py -------------------------------------------------------------------------------- /rez_industry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/README.md -------------------------------------------------------------------------------- /rez_industry/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/package.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/__init__.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/api.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/core/__init__.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/core/adapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/core/adapters/__init__.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/core/adapters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/core/adapters/base.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/core/adapters/help_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/core/adapters/help_adapter.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/core/adapters/requires_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/core/adapters/requires_adapter.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/core/adapters/tests_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/core/adapters/tests_adapter.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/core/convention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/core/convention.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/core/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/core/encoder.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/core/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/core/parser.py -------------------------------------------------------------------------------- /rez_industry/python/rez_industry/core/parso_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/python/rez_industry/core/parso_utility.py -------------------------------------------------------------------------------- /rez_industry/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/tests/__init__.py -------------------------------------------------------------------------------- /rez_industry/tests/test_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/tests/test_help.py -------------------------------------------------------------------------------- /rez_industry/tests/test_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_industry/tests/test_replace.py -------------------------------------------------------------------------------- /rez_lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/README.md -------------------------------------------------------------------------------- /rez_lint/bin/rez_lint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | python -m rez_lint $@ 4 | -------------------------------------------------------------------------------- /rez_lint/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/package.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/__init__.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/__main__.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/cli.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/core/__init__.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/core/exceptions.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/core/exit_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/core/exit_code.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/core/lint_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/core/lint_constant.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/core/message_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/core/message_description.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/core/package_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/core/package_parser.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/core/parso_comment_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/core/parso_comment_helper.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/core/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/core/registry.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/core/resource_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/core/resource_utilities.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/__init__.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/check_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/check_context.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/checkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/checkers/__init__.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/checkers/base_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/checkers/base_checker.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/checkers/conventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/checkers/conventions.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/checkers/dangers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/checkers/dangers.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/checkers/explains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/checkers/explains.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/checkers/explains_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/checkers/explains_comment.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/contexts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/contexts/__init__.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/contexts/base_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/contexts/base_context.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/contexts/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/contexts/packaging.py -------------------------------------------------------------------------------- /rez_lint/python/rez_lint/plugins/contexts/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/python/rez_lint/plugins/contexts/parsing.py -------------------------------------------------------------------------------- /rez_lint/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/__init__.py -------------------------------------------------------------------------------- /rez_lint/tests/checkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/checkers/__init__.py -------------------------------------------------------------------------------- /rez_lint/tests/checkers/test_conventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/checkers/test_conventions.py -------------------------------------------------------------------------------- /rez_lint/tests/checkers/test_dangers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/checkers/test_dangers.py -------------------------------------------------------------------------------- /rez_lint/tests/checkers/test_explains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/checkers/test_explains.py -------------------------------------------------------------------------------- /rez_lint/tests/checkers/test_explains_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/checkers/test_explains_comment.py -------------------------------------------------------------------------------- /rez_lint/tests/contexts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/contexts/__init__.py -------------------------------------------------------------------------------- /rez_lint/tests/contexts/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/contexts/test_packaging.py -------------------------------------------------------------------------------- /rez_lint/tests/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/packaging.py -------------------------------------------------------------------------------- /rez_lint/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/test_cli.py -------------------------------------------------------------------------------- /rez_lint/tests/test_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/test_formatting.py -------------------------------------------------------------------------------- /rez_lint/tests/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/test_general.py -------------------------------------------------------------------------------- /rez_lint/tests/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_lint/tests/test_registry.py -------------------------------------------------------------------------------- /rez_move_imports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_move_imports/README.md -------------------------------------------------------------------------------- /rez_move_imports/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_move_imports/package.py -------------------------------------------------------------------------------- /rez_move_imports/python/rez_move_imports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_move_imports/python/rez_move_imports/__init__.py -------------------------------------------------------------------------------- /rez_move_imports/python/rez_move_imports/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_move_imports/python/rez_move_imports/__main__.py -------------------------------------------------------------------------------- /rez_move_imports/python/rez_move_imports/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_move_imports/python/rez_move_imports/cli.py -------------------------------------------------------------------------------- /rez_move_imports/python/rez_move_imports/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_move_imports/python/rez_move_imports/core/__init__.py -------------------------------------------------------------------------------- /rez_move_imports/python/rez_move_imports/core/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_move_imports/python/rez_move_imports/core/exception.py -------------------------------------------------------------------------------- /rez_move_imports/python/rez_move_imports/core/replacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_move_imports/python/rez_move_imports/core/replacer.py -------------------------------------------------------------------------------- /rez_move_imports/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """All of the tests for ``rez_move_imports``.""" 2 | -------------------------------------------------------------------------------- /rez_move_imports/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_move_imports/tests/test_cli.py -------------------------------------------------------------------------------- /rez_move_imports/tests/test_replace_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_move_imports/tests/test_replace_dependency.py -------------------------------------------------------------------------------- /rez_move_imports/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_move_imports/tests/test_run.py -------------------------------------------------------------------------------- /rez_pip_boy/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/.pylintrc -------------------------------------------------------------------------------- /rez_pip_boy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/README.md -------------------------------------------------------------------------------- /rez_pip_boy/bin/rez_pip_boy: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | python -m rez_pip_boy "$@" 4 | -------------------------------------------------------------------------------- /rez_pip_boy/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/package.py -------------------------------------------------------------------------------- /rez_pip_boy/python/rez_pip_boy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/python/rez_pip_boy/__init__.py -------------------------------------------------------------------------------- /rez_pip_boy/python/rez_pip_boy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/python/rez_pip_boy/__main__.py -------------------------------------------------------------------------------- /rez_pip_boy/python/rez_pip_boy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/python/rez_pip_boy/cli.py -------------------------------------------------------------------------------- /rez_pip_boy/python/rez_pip_boy/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/python/rez_pip_boy/core/__init__.py -------------------------------------------------------------------------------- /rez_pip_boy/python/rez_pip_boy/core/_build_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/python/rez_pip_boy/core/_build_command.py -------------------------------------------------------------------------------- /rez_pip_boy/python/rez_pip_boy/core/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/python/rez_pip_boy/core/builder.py -------------------------------------------------------------------------------- /rez_pip_boy/python/rez_pip_boy/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/python/rez_pip_boy/core/exceptions.py -------------------------------------------------------------------------------- /rez_pip_boy/python/rez_pip_boy/core/filer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/python/rez_pip_boy/core/filer.py -------------------------------------------------------------------------------- /rez_pip_boy/python/rez_pip_boy/core/hashed_variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/python/rez_pip_boy/core/hashed_variant.py -------------------------------------------------------------------------------- /rez_pip_boy/python/rez_pip_boy/core/pather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/python/rez_pip_boy/core/pather.py -------------------------------------------------------------------------------- /rez_pip_boy/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/setup.cfg -------------------------------------------------------------------------------- /rez_pip_boy/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/tests/__init__.py -------------------------------------------------------------------------------- /rez_pip_boy/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_pip_boy/tests/test_run.py -------------------------------------------------------------------------------- /rez_python_compatibility/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/.pylintrc -------------------------------------------------------------------------------- /rez_python_compatibility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/README.md -------------------------------------------------------------------------------- /rez_python_compatibility/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/package.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/__init__.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/dependency_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/dependency_analyzer.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/filer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/filer.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/import_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/import_parser.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/imports.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/iterbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/iterbot.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/packaging.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/pathrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/pathrip.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/sphinx/__init__.py: -------------------------------------------------------------------------------- 1 | """All "Sphinx documentation"-related Python modules.""" 2 | -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/sphinx/conf_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/sphinx/conf_manager.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/sphinx/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/sphinx/exceptions.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/testing/__init__.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/testing/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/testing/common.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/testing/contextual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/testing/contextual.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/testing/package_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/testing/package_tester.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/website.py -------------------------------------------------------------------------------- /rez_python_compatibility/python/python_compatibility/wrapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/python/python_compatibility/wrapping.py -------------------------------------------------------------------------------- /rez_python_compatibility/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """All of the tests for this Rez/Python package.""" 2 | -------------------------------------------------------------------------------- /rez_python_compatibility/tests/test_contextual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/tests/test_contextual.py -------------------------------------------------------------------------------- /rez_python_compatibility/tests/test_filer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/tests/test_filer.py -------------------------------------------------------------------------------- /rez_python_compatibility/tests/test_import_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/tests/test_import_parser.py -------------------------------------------------------------------------------- /rez_python_compatibility/tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/tests/test_imports.py -------------------------------------------------------------------------------- /rez_python_compatibility/tests/test_iterbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/tests/test_iterbot.py -------------------------------------------------------------------------------- /rez_python_compatibility/tests/test_pathrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/tests/test_pathrip.py -------------------------------------------------------------------------------- /rez_python_compatibility/tests/test_testing_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/tests/test_testing_common.py -------------------------------------------------------------------------------- /rez_python_compatibility/tests/test_website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/tests/test_website.py -------------------------------------------------------------------------------- /rez_python_compatibility/tests/test_wrapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_python_compatibility/tests/test_wrapping.py -------------------------------------------------------------------------------- /rez_symbl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_symbl/README.md -------------------------------------------------------------------------------- /rez_symbl/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_symbl/package.py -------------------------------------------------------------------------------- /rez_symbl/python/rez_symbl/__init__.py: -------------------------------------------------------------------------------- 1 | """The main sub-package which provides a API and CLI for using ``rez_symbl``.""" 2 | -------------------------------------------------------------------------------- /rez_symbl/python/rez_symbl/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_symbl/python/rez_symbl/__main__.py -------------------------------------------------------------------------------- /rez_symbl/python/rez_symbl/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_symbl/python/rez_symbl/api.py -------------------------------------------------------------------------------- /rez_symbl/python/rez_symbl/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_symbl/python/rez_symbl/cli.py -------------------------------------------------------------------------------- /rez_symbl/python/rez_symbl/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_symbl/python/rez_symbl/core/__init__.py -------------------------------------------------------------------------------- /rez_symbl/python/rez_symbl/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_symbl/python/rez_symbl/core/constants.py -------------------------------------------------------------------------------- /rez_symbl/python/rez_symbl/core/linker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_symbl/python/rez_symbl/core/linker.py -------------------------------------------------------------------------------- /rez_symbl/python/rez_symbl/core/pather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_symbl/python/rez_symbl/core/pather.py -------------------------------------------------------------------------------- /rez_symbl/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """All of the unittests for ``rez_symbl``.""" 2 | -------------------------------------------------------------------------------- /rez_symbl/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_symbl/tests/test_run.py -------------------------------------------------------------------------------- /rez_test_env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_test_env/README.md -------------------------------------------------------------------------------- /rez_test_env/bin/rez_test_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_test_env/bin/rez_test_env -------------------------------------------------------------------------------- /rez_test_env/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_test_env/package.py -------------------------------------------------------------------------------- /rez_test_env/python/rez_test_env/__init__.py: -------------------------------------------------------------------------------- 1 | """All of the CLI + core code for `rez_test_env`.""" 2 | -------------------------------------------------------------------------------- /rez_test_env/python/rez_test_env/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_test_env/python/rez_test_env/__main__.py -------------------------------------------------------------------------------- /rez_test_env/python/rez_test_env/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_test_env/python/rez_test_env/cli.py -------------------------------------------------------------------------------- /rez_test_env/python/rez_test_env/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_test_env/python/rez_test_env/core/__init__.py -------------------------------------------------------------------------------- /rez_test_env/python/rez_test_env/core/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_test_env/python/rez_test_env/core/environment.py -------------------------------------------------------------------------------- /rez_test_env/python/rez_test_env/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_test_env/python/rez_test_env/core/exceptions.py -------------------------------------------------------------------------------- /rez_test_env/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_test_env/tests/__init__.py -------------------------------------------------------------------------------- /rez_test_env/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_test_env/tests/test_run.py -------------------------------------------------------------------------------- /rez_utilities/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/.pylintrc -------------------------------------------------------------------------------- /rez_utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/README.md -------------------------------------------------------------------------------- /rez_utilities/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/package.py -------------------------------------------------------------------------------- /rez_utilities/python/rez_utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/python/rez_utilities/__init__.py -------------------------------------------------------------------------------- /rez_utilities/python/rez_utilities/creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/python/rez_utilities/creator.py -------------------------------------------------------------------------------- /rez_utilities/python/rez_utilities/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/python/rez_utilities/finder.py -------------------------------------------------------------------------------- /rez_utilities/python/rez_utilities/help_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/python/rez_utilities/help_manager.py -------------------------------------------------------------------------------- /rez_utilities/python/rez_utilities/inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/python/rez_utilities/inspection.py -------------------------------------------------------------------------------- /rez_utilities/python/rez_utilities/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/python/rez_utilities/plugins/__init__.py -------------------------------------------------------------------------------- /rez_utilities/python/rez_utilities/plugins/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/python/rez_utilities/plugins/registry.py -------------------------------------------------------------------------------- /rez_utilities/python/rez_utilities/plugins/url_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/python/rez_utilities/plugins/url_manager.py -------------------------------------------------------------------------------- /rez_utilities/python/rez_utilities/rez_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/python/rez_utilities/rez_configuration.py -------------------------------------------------------------------------------- /rez_utilities/python/rez_utilities/silencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/python/rez_utilities/silencer.py -------------------------------------------------------------------------------- /rez_utilities/python/rez_utilities/url_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/python/rez_utilities/url_help.py -------------------------------------------------------------------------------- /rez_utilities/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/tests/__init__.py -------------------------------------------------------------------------------- /rez_utilities/tests/common/__init__.py: -------------------------------------------------------------------------------- 1 | """Private modules to help make / write unittests.""" 2 | -------------------------------------------------------------------------------- /rez_utilities/tests/common/pather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/tests/common/pather.py -------------------------------------------------------------------------------- /rez_utilities/tests/test_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/tests/test_creator.py -------------------------------------------------------------------------------- /rez_utilities/tests/test_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/tests/test_finder.py -------------------------------------------------------------------------------- /rez_utilities/tests/test_help_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/tests/test_help_manager.py -------------------------------------------------------------------------------- /rez_utilities/tests/test_inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/tests/test_inspection.py -------------------------------------------------------------------------------- /rez_utilities/tests/test_url_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities/tests/test_url_help.py -------------------------------------------------------------------------------- /rez_utilities_git/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities_git/package.py -------------------------------------------------------------------------------- /rez_utilities_git/python/rez_utilities_git/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rez_utilities_git/python/rez_utilities_git/gitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities_git/python/rez_utilities_git/gitter.py -------------------------------------------------------------------------------- /rez_utilities_git/python/rez_utilities_git/testify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/rez_utilities_git/python/rez_utilities_git/testify.py -------------------------------------------------------------------------------- /sphinx_apidoc_check/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/CHANGELOG.rst -------------------------------------------------------------------------------- /sphinx_apidoc_check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/README.md -------------------------------------------------------------------------------- /sphinx_apidoc_check/bin/sphinx_apidoc_check: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | python -m sphinx_apidoc_check "$@" 4 | -------------------------------------------------------------------------------- /sphinx_apidoc_check/documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/documentation/Makefile -------------------------------------------------------------------------------- /sphinx_apidoc_check/documentation/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/documentation/make.bat -------------------------------------------------------------------------------- /sphinx_apidoc_check/documentation/source/api/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/documentation/source/api/modules.rst -------------------------------------------------------------------------------- /sphinx_apidoc_check/documentation/source/api/sphinx_apidoc_check.cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/documentation/source/api/sphinx_apidoc_check.cli.rst -------------------------------------------------------------------------------- /sphinx_apidoc_check/documentation/source/api/sphinx_apidoc_check.core.apidoc_patcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/documentation/source/api/sphinx_apidoc_check.core.apidoc_patcher.rst -------------------------------------------------------------------------------- /sphinx_apidoc_check/documentation/source/api/sphinx_apidoc_check.core.check_constant.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/documentation/source/api/sphinx_apidoc_check.core.check_constant.rst -------------------------------------------------------------------------------- /sphinx_apidoc_check/documentation/source/api/sphinx_apidoc_check.core.check_exception.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/documentation/source/api/sphinx_apidoc_check.core.check_exception.rst -------------------------------------------------------------------------------- /sphinx_apidoc_check/documentation/source/api/sphinx_apidoc_check.core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/documentation/source/api/sphinx_apidoc_check.core.rst -------------------------------------------------------------------------------- /sphinx_apidoc_check/documentation/source/api/sphinx_apidoc_check.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sphinx_apidoc_check/documentation/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/documentation/source/conf.py -------------------------------------------------------------------------------- /sphinx_apidoc_check/documentation/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/documentation/source/index.rst -------------------------------------------------------------------------------- /sphinx_apidoc_check/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/package.py -------------------------------------------------------------------------------- /sphinx_apidoc_check/python/sphinx_apidoc_check/__init__.py: -------------------------------------------------------------------------------- 1 | """The API and CLI modules for ``sphinx_apidoc_check``.""" 2 | -------------------------------------------------------------------------------- /sphinx_apidoc_check/python/sphinx_apidoc_check/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/python/sphinx_apidoc_check/__main__.py -------------------------------------------------------------------------------- /sphinx_apidoc_check/python/sphinx_apidoc_check/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/python/sphinx_apidoc_check/cli.py -------------------------------------------------------------------------------- /sphinx_apidoc_check/python/sphinx_apidoc_check/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/python/sphinx_apidoc_check/core/__init__.py -------------------------------------------------------------------------------- /sphinx_apidoc_check/python/sphinx_apidoc_check/core/apidoc_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/python/sphinx_apidoc_check/core/apidoc_patcher.py -------------------------------------------------------------------------------- /sphinx_apidoc_check/python/sphinx_apidoc_check/core/check_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/python/sphinx_apidoc_check/core/check_constant.py -------------------------------------------------------------------------------- /sphinx_apidoc_check/python/sphinx_apidoc_check/core/check_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/python/sphinx_apidoc_check/core/check_exception.py -------------------------------------------------------------------------------- /sphinx_apidoc_check/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """All of the tests for ``sphinx_apidoc_check``.""" 2 | -------------------------------------------------------------------------------- /sphinx_apidoc_check/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinKennedy/rez_developer_packages/HEAD/sphinx_apidoc_check/tests/test_run.py --------------------------------------------------------------------------------