Make bundle portable by bundling third party packages we need

This commit is contained in:
2017-11-16 10:12:16 +01:00
parent c557f0bdec
commit 5a199f14c1
32 changed files with 15217 additions and 34 deletions

View File

@@ -1,5 +1,12 @@
#!/usr/bin/env python3
import os
import sys
SCRIPT_PATH = os.path.realpath(__file__)
SCRIPT_DIR = os.path.dirname(SCRIPT_PATH)
sys.path.append(os.path.join(SCRIPT_DIR, "third_party"))
import argparse
import datetime
import foundation