goboscript package manager
Clone the repo:
git clone https://gitlab.com/goboscript-lesbos/lesbos
cd lesbosThen, create and activate virtual env:
python -m venv .env
. .env/bin/activateNow, install requirements:
pip install -r requirements.txtFinally, build and install:
pip install .The help menu will show you most information, though some of it is misleading.
Creates a new project.
Usage:
python -m lesbosgs new [name]Can take:
--force-remake--lib(-l)
Adds a package to the dependencies of the project in the current working directory.
Usage:
python -m lesbosgs add [--source (-s)/--name (-n)] [package url/package name] [-v/--version] [version]Can take:
--features(space-seperated list of features to add)
Installs all dependencies.
Usage:
python -m lesbosgs lockBuilds the project in the current working directory.
Usage:
python -m lesbosgs buildCan take:
--no-lock
Packs the current project into the library format, if it is a library, into lesbos/packed.
Usage:
python -m lesbosgs pack