├── .github └── workflows │ ├── deploy-docs.yml │ ├── pypi-cli.yml │ ├── pypi.yml │ └── python-package.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── cli ├── LICENSE ├── README.md ├── setup.cfg └── setup.py ├── docs ├── command.md ├── container.md ├── environ.md ├── index.md ├── license.md ├── requirements.txt ├── rezup.md ├── rezup.util.md ├── rezup.util_env.md ├── scripts.md └── stylesheets │ └── extra.css ├── mkdocs.yml ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src └── rezup │ ├── __init__.py │ ├── __main__.py │ ├── _actions.py │ ├── _logging.py │ ├── _vendor │ ├── __init__.py │ ├── toml │ │ ├── __init__.py │ │ ├── common.py │ │ ├── decoder.py │ │ ├── encoder.py │ │ ├── ordered.py │ │ └── tz.py │ └── version.py │ ├── cli.py │ ├── container.py │ ├── exceptions.py │ ├── launch │ ├── README.md │ ├── __init__.py │ ├── shell.py │ ├── up.bat │ └── up.ps1 │ ├── recipe.py │ ├── rezup.toml │ ├── util.py │ └── util_env.py └── tests ├── __init__.py ├── mock └── rez │ ├── rez │ ├── __init__.py │ └── utils │ │ ├── __init__.py │ │ └── _version.py │ ├── setup.cfg │ └── setup.py ├── test_container.py └── util.py /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/.github/workflows/pypi-cli.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/README.md -------------------------------------------------------------------------------- /cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/cli/LICENSE -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/cli/setup.cfg -------------------------------------------------------------------------------- /cli/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/cli/setup.py -------------------------------------------------------------------------------- /docs/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/docs/command.md -------------------------------------------------------------------------------- /docs/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/docs/container.md -------------------------------------------------------------------------------- /docs/environ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/docs/environ.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --8<-- "README.md" 2 | -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- 1 | ``` 2 | --8<-- "LICENSE" 3 | ``` 4 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/rezup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/docs/rezup.md -------------------------------------------------------------------------------- /docs/rezup.util.md: -------------------------------------------------------------------------------- 1 | 2 | ## 3 | 4 | ::: rezup.util 5 | -------------------------------------------------------------------------------- /docs/rezup.util_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/docs/rezup.util_env.md -------------------------------------------------------------------------------- /docs/scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/docs/scripts.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/setup.py -------------------------------------------------------------------------------- /src/rezup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/__init__.py -------------------------------------------------------------------------------- /src/rezup/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/__main__.py -------------------------------------------------------------------------------- /src/rezup/_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/_actions.py -------------------------------------------------------------------------------- /src/rezup/_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/_logging.py -------------------------------------------------------------------------------- /src/rezup/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/rezup/_vendor/toml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/_vendor/toml/__init__.py -------------------------------------------------------------------------------- /src/rezup/_vendor/toml/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/_vendor/toml/common.py -------------------------------------------------------------------------------- /src/rezup/_vendor/toml/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/_vendor/toml/decoder.py -------------------------------------------------------------------------------- /src/rezup/_vendor/toml/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/_vendor/toml/encoder.py -------------------------------------------------------------------------------- /src/rezup/_vendor/toml/ordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/_vendor/toml/ordered.py -------------------------------------------------------------------------------- /src/rezup/_vendor/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/_vendor/toml/tz.py -------------------------------------------------------------------------------- /src/rezup/_vendor/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/_vendor/version.py -------------------------------------------------------------------------------- /src/rezup/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/cli.py -------------------------------------------------------------------------------- /src/rezup/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/container.py -------------------------------------------------------------------------------- /src/rezup/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/exceptions.py -------------------------------------------------------------------------------- /src/rezup/launch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/launch/README.md -------------------------------------------------------------------------------- /src/rezup/launch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/rezup/launch/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/launch/shell.py -------------------------------------------------------------------------------- /src/rezup/launch/up.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/launch/up.bat -------------------------------------------------------------------------------- /src/rezup/launch/up.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/launch/up.ps1 -------------------------------------------------------------------------------- /src/rezup/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/recipe.py -------------------------------------------------------------------------------- /src/rezup/rezup.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/rezup.toml -------------------------------------------------------------------------------- /src/rezup/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/util.py -------------------------------------------------------------------------------- /src/rezup/util_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/src/rezup/util_env.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mock/rez/rez/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | def run(): 4 | print("Welcome to Rez.") 5 | -------------------------------------------------------------------------------- /tests/mock/rez/rez/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mock/rez/rez/utils/_version.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = "0.0.0" 3 | -------------------------------------------------------------------------------- /tests/mock/rez/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/tests/mock/rez/setup.cfg -------------------------------------------------------------------------------- /tests/mock/rez/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/tests/mock/rez/setup.py -------------------------------------------------------------------------------- /tests/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/tests/test_container.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidlatwe/rezup/HEAD/tests/util.py --------------------------------------------------------------------------------