Move custom libs to libs/custom

This commit is contained in:
Labrys of Knossos 2018-12-16 13:32:58 -05:00
commit f3db9af8cf
10 changed files with 5 additions and 0 deletions

View file

@ -21,6 +21,9 @@ sys.path.insert(0, LIBS_DIR)
LIBS_DIR_COMMON = os.path.join(LIBS_DIR, 'common')
sys.path.insert(0, LIBS_DIR_COMMON)
LIBS_DIR_CUSTOM = os.path.join(LIBS_DIR, 'custom')
sys.path.insert(0, LIBS_DIR_CUSTOM)
# init preliminaries
SYS_ARGV = sys.argv[1:]
APP_FILENAME = sys.argv[0]