From 2d309c6e815d4bae483b87693e0e86c1837c331f Mon Sep 17 00:00:00 2001 From: xbello Date: Fri, 15 Nov 2013 10:16:09 +0100 Subject: [PATCH] Added two libs and icon path to setup.py --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a5551644..9fb7f3c9 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,8 @@ def tar(file, filelist, expression='^.+$'): def start(): if 'sdist' in sys.argv: - tar('gluon/env.tar', ['applications', 'VERSION', 'splashlogo.gif']) + tar('gluon/env.tar', ['applications', 'VERSION', + 'extras/icons/splashlogo.gif']) setup(name='web2py', version=read_file("VERSION").split()[1], @@ -63,6 +64,8 @@ def start(): 'gluon/contrib/pyrtf', 'gluon/contrib/pysimplesoap', 'gluon/contrib/simplejson', + 'gluon/contrib/pg8000', + 'gluon/contrib/plural_rules', 'gluon/tests', ], package_data={'gluon': ['env.tar']},