From ef8cd74e3c3f0bbaa459da707666ad2d28c02771 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sat, 28 Sep 2019 09:08:06 +0100 Subject: added pyinstaller stuff --- .gitignore | 3 +++ Pipfile | 1 + Pipfile.lock | 16 +++++++++++++++- cli.py | 4 +++- 4 files changed, 22 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9f11b75..150e4d7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ .idea/ +cli.spec +build/ +dist/ diff --git a/Pipfile b/Pipfile index 7b1b4b4..13f425f 100644 --- a/Pipfile +++ b/Pipfile @@ -5,6 +5,7 @@ verify_ssl = true [dev-packages] pytest = "*" +pyinstaller = "*" [packages] openpyxl = "*" diff --git a/Pipfile.lock b/Pipfile.lock index 101c7c4..f6139fa 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "98952e013f654efa60ba726c96572096e1bdaa9f45d92d0bb65d9faf905bffa2" + "sha256": "39ff92a4d32ecb15f5b54484a803986ea404dc2a40ac2a7b1f77cf3e4882d071" }, "pipfile-spec": 6, "requires": { @@ -84,6 +84,13 @@ } }, "develop": { + "altgraph": { + "hashes": [ + "sha256:d6814989f242b2b43025cba7161fc1b8fb487a62cd49c49245d6fd01c18ac997", + "sha256:ddf5320017147ba7b810198e0b6619bd7b5563aa034da388cea8546b877f9b0c" + ], + "version": "==0.16.1" + }, "atomicwrites": { "hashes": [ "sha256:03472c30eb2c5d1ba9227e4c2ca66ab8287fbfbbda3888aa93dc2e28fc6811b4", @@ -126,6 +133,13 @@ ], "version": "==1.8.0" }, + "pyinstaller": { + "hashes": [ + "sha256:ee7504022d1332a3324250faf2135ea56ac71fdb6309cff8cd235de26b1d0a96" + ], + "index": "pypi", + "version": "==3.5" + }, "pyparsing": { "hashes": [ "sha256:6f98a7b9397e206d78cc01df10131398f1c8b8510a2f4d97d9abd82e1aacdd80", diff --git a/cli.py b/cli.py index b493f58..0f67e43 100644 --- a/cli.py +++ b/cli.py @@ -1,4 +1,6 @@ +import sys + from datamaps.main import cli if __name__ == '__main__': - cli \ No newline at end of file + cli(sys.argv[1:]) \ No newline at end of file -- cgit v1.2.3