Metadata-Version: 2.1
Name: rezup
Version: 1.2.0
Summary: Rez launching environment manager
Home-page: https://github.com/davidlatwe/rezup
Author: davidlatwe
Author-email: davidlatwe@gmail.com
Maintainer: davidlatwe
Maintainer-email: davidlatwe@gmail.com
License: GPLv3
Project-URL: Source, https://github.com/davidlatwe/rezup
Project-URL: Tracker, https://github.com/davidlatwe/rezup/issues
Keywords: package resolve version build install software management
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development
Classifier: Topic :: System :: Software Distribution
Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=3
Description-Content-Type: text/markdown
Requires-Dist: distlib (<1,>=0.3.1)
Requires-Dist: virtualenv (<21,>=20.4.4)
Requires-Dist: shellingham (<2,>=1.4.0)
Requires-Dist: python-dotenv (<1,>=0.17)
Provides-Extra: tests
Requires-Dist: pytest ; extra == 'tests'

# rezup

[Rez](https://github.com/nerdvegas/rez) launching environment manager

### Install

```
pip install rezup
```

### Usage

use default container `.main`
```
$ rezup
```

use foo
```
$ rezup use foo
```

use foo and do job
```
$ rezup use foo --do {script.bat}
```

install rez into default container
```
$ rezup use --make {rezup.toml}
```

install rez into container foo
```
$ rezup use foo --make {rezup.toml}
```

remove container foo
```
$ rezup drop foo
```

list containers
```
$ rezup list
```


