mottosso / bleeding-rez

Rez - Reproducible software environments for Windows, Linux and MacOS
GNU Lesser General Public License v3.0
72 stars 10 forks source link

rez init #63

Open mottosso opened 5 years ago

mottosso commented 5 years ago

Goal

Create boilerplate for a new package.

Motivation

Something to simplify getting started, and facilitate more boilerplate where necessary.

Implementation

Mimic how git init works.

mkdir mypackage
cd mypackage
rez init
# package.py created

rez init --preset python
# package.py and install.py created, with boilerplate install script

rez init --preset cpp
rez init --preset rust
rez init --preset go
rez init --preset cmake