move run_fpdb.bat up a directory to /fpdb/

This commit is contained in:
sqlcoder 2010-02-07 01:06:36 +00:00
parent ef26c05181
commit fbeaa5590f
2 changed files with 14 additions and 11 deletions

View File

@ -88,10 +88,10 @@ test_and_remove('gfx')
today = date.today().strftime('%Y%m%d') today = date.today().strftime('%Y%m%d')
print "\nOutput will be created in /dist/ and /fpdb_XXX_"+today+"/" print "\n" + r"Output will be created in \dist\ and \fpdb_XXX_"+today+'\\'
print "Enter value for XXX (any length): ", # the comma means no newline print "Enter value for XXX (any length): ", # the comma means no newline
xxx = sys.stdin.readline().rstrip() xxx = sys.stdin.readline().rstrip()
dist_dir = r'..\fpdb-' + xxx + '-' + today dist_dir = r'..\fpdb-' + xxx + '-' + today + '-exe'
print print
@ -106,23 +106,26 @@ setup(
], ],
options = {'py2exe': { options = {'py2exe': {
'packages' : 'encodings', 'packages' : ['encodings', 'matplotlib'],
'includes' : 'cairo, pango, pangocairo, atk, gobject, PokerStarsToFpdb', 'includes' : ['cairo', 'pango', 'pangocairo', 'atk', 'gobject'
'excludes' : '_tkagg, _agg2, cocoaagg, fltkagg', ,'PokerStarsToFpdb', 'matplotlib.numerix.random_array'],
'dll_excludes': 'libglade-2.0-0.dll', 'excludes' : ['_gtkagg', '_tkagg', '_agg2', 'cocoaagg', 'fltkagg'],
'dll_excludes': ['libglade-2.0-0.dll', 'libgdk-win32-2.0-0.dll'
,'libgobject-2.0-0.dll'],
} }
}, },
# files are moved from 2nd value in tuple to dir named in 1st # files in 2nd value in tuple are moved to dir named in 1st value
data_files = [('', ['HUD_config.xml.example', 'Cards01.png', 'logging.conf']) data_files = [('', ['HUD_config.xml.example', 'Cards01.png', 'logging.conf'])
,(dist_dir, ['run_fpdb.bat']) ,(dist_dir, [r'..\run_fpdb.bat'])
,( dist_dir + r'\gfx', glob.glob(r'..\gfx\*.*') ) ,( dist_dir + r'\gfx', glob.glob(r'..\gfx\*.*') )
# line below has problem with fonts subdir ('not a regular file')
#,(r'matplotlibdata', glob.glob(r'c:\python25\Lib\site-packages\matplotlib\mpl-data\*')) #,(r'matplotlibdata', glob.glob(r'c:\python25\Lib\site-packages\matplotlib\mpl-data\*'))
] + matplotlib.get_py2exe_datafiles() ] + matplotlib.get_py2exe_datafiles()
) )
print '\nIf py2exe was successful move the /dist/ directory ' print '\n' + r'If py2exe was successful move the \dist\ directory '
print 'into /'+dist_dir+'/ and rename it as /pyfpdb/' print 'into \\'+dist_dir+'\\ and rename it as \\pyfpdb\\'
print "Don't forget to add the /etc /lib and /share dirs from your gtk dir\n" print "Don't forget to add the \\etc \\lib and \\share dirs from your gtk dir\n"