diff options
-rw-r--r-- | README.md | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -14,19 +14,25 @@ The ArGaze toolkit is divided in submodules dedicated to various purposes: Consider that all inline commands below needs to be executed into ArGaze root folder. -- Build package: +- Install build tool package: + +``` +pip install build +``` + +- Then, build argaze package: ``` python -m build ``` -- Then, install package (replace VERSION by what has been built into dist folder): +- Then, install argaze package (replace VERSION by what has been built into dist folder): ``` pip install ./dist/argaze-VERSION.whl ``` -As Argaze library developper, you should prefer to install the package in developer mode to test live code changes: +*As Argaze library developper, you should prefer to install the package in developer mode to test live code changes:* ``` pip install -e . @@ -48,7 +54,7 @@ pip install pdoc pdoc -o ./doc ./src/argaze/ ``` -As Argaze library developper, you should prefer to create a local html server to watch live documentation changes: +*As Argaze library developper, you should prefer to create a local html server to watch live documentation changes:* ``` pdoc ./src/argaze/ |