77 lines
3.1 KiB
Python
77 lines
3.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
"""setup.py
|
|
|
|
Py2exe script for fpdb.
|
|
"""
|
|
# Copyright 2009, Ray E. Barker
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
########################################################################
|
|
|
|
#TODO: change GuiAutoImport so that it knows to start HUD_main.exe, when appropriate
|
|
# include the lib needed to handle png files in mucked
|
|
# get rid of all the uneeded libraries (e.g., pyQT)
|
|
# think about an installer
|
|
|
|
#HOW TO USE this script:
|
|
#
|
|
# cd to the folder where this script is stored, usually .../pyfpdb.
|
|
# If there are build and dist subfolders present , delete them to get
|
|
# rid of earlier builds.
|
|
# Run the script with "py2exe_setup.py py2exe"
|
|
# You will frequently get messages about missing .dll files. E. g.,
|
|
# MSVCP90.dll. These are somewhere in your windows install, so you
|
|
# can just copy them to your working folder.
|
|
# If it works, you'll have 2 new folders, build and dist. Build is
|
|
# working space and should be deleted. Dist contains the files to be
|
|
# distributed. Last, you must copy the etc/, lib/ and share/ folders
|
|
# from your gtk/bin/ folder to the dist folder. (the whole folders, not
|
|
# just the contents) You can (should) then prune the etc/, lib/ and
|
|
# share/ folders to remove components we don't need.
|
|
|
|
from distutils.core import setup
|
|
import py2exe
|
|
import glob
|
|
|
|
setup(
|
|
name = 'fpdb',
|
|
description = 'Free Poker DataBase',
|
|
version = '0.12',
|
|
|
|
console = [ {'script': 'fpdb.py', "icon_resources": [(1, "../gfx/fpdb_large_icon.ico")]},
|
|
{'script': 'HUD_main.py', },
|
|
{'script': 'Configuration.py', }
|
|
],
|
|
|
|
options = {'py2exe': {
|
|
'packages' :'encodings',
|
|
'includes' : 'cairo, pango, pangocairo, atk, gobject, PokerStarsToFpdb, FulltiltToFpdb',
|
|
'excludes' : '_tkagg, _agg2, cocoaagg, fltkagg',
|
|
'dll_excludes': 'libglade-2.0-0.dll',
|
|
}
|
|
},
|
|
|
|
data_files = ['HUD_config.xml.example',
|
|
'Cards01.png',
|
|
'logging.conf',
|
|
(r'mpl-data', [r'C:\Python25\Lib\site-packages\matplotlib\mpl-data\matplotlibrc']),
|
|
(r'mpl-data\images', glob.glob(r'C:\Python25\Lib\site-packages\matplotlib\mpl-data\images\*.*')),
|
|
(r'mpl-data\fonts', glob.glob(r'C:\Python25\Lib\site-packages\matplotlib\mpl-data\fonts\*.*')),
|
|
]
|
|
)
|
|
|