From 00a61dae70fa9a4d20fd20ec1ef10e7592c5c2b0 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 9 Jul 2014 10:31:57 -0400 Subject: [PATCH] for include passlib.handlers.sha2_crypt --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 447ab305..8ca98401 100644 --- a/setup.py +++ b/setup.py @@ -5,11 +5,12 @@ sys.argv.append('py2exe') setup( console = ['gam.py'], - + zipfile = None, options = {'py2exe': {'optimize': 2, 'bundle_files': 1, + 'includes': ['passlib.handlers.sha2_crypt']' 'dist_dir' : 'gam'} } - ) \ No newline at end of file + )