diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2019-11-09 15:31:34 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2019-11-09 15:31:34 +0000 |
commit | ea325638e549b46ab19027c070d795ec7ea58094 (patch) | |
tree | 02c5ec5303384ef5633f8b147ca646fae3276fc8 | |
parent | 733ed729b03fa14c252d1079631e65efc3f59873 (diff) |
added pyinstaller build instructions
-rw-r--r-- | BUILDING.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/BUILDING.md b/BUILDING.md new file mode 100644 index 0000000..83ffcd0 --- /dev/null +++ b/BUILDING.md @@ -0,0 +1,11 @@ +### Pyinstaller build + +* `git pull` +* Activate virtualenv (on Windows `.venv\Scripts\activate.bat`) +* Remove `bcompiler-engine` and `datamaps` (`pip uninstall bcompiler-engine + datamaps`) +* `pip install -e .` to reinstall in developer mode +* `pyinstaller cli.py --name "dm" --onefile` to create the executible in `dist` + directory. +* Upload to target download site + |