aboutsummaryrefslogtreecommitdiff
path: root/BUILDING.md
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-11-09 15:31:34 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2019-11-09 15:31:34 +0000
commitea325638e549b46ab19027c070d795ec7ea58094 (patch)
tree02c5ec5303384ef5633f8b147ca646fae3276fc8 /BUILDING.md
parentreadme fix (diff)
added pyinstaller build instructions
Diffstat (limited to 'BUILDING.md')
-rw-r--r--BUILDING.md11
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
+