diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | Pipfile | 1 | ||||
-rw-r--r-- | Pipfile.lock | 16 | ||||
-rw-r--r-- | cli.py | 4 |
4 files changed, 22 insertions, 2 deletions
@@ -1 +1,4 @@ .idea/ +cli.spec +build/ +dist/ @@ -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", @@ -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 |