From a7858bdd0fc886fd557dc5ba699987526f3ebe42 Mon Sep 17 00:00:00 2001 From: brianl Date: Thu, 14 Dec 2006 06:31:45 +0000 Subject: [PATCH] * renamed pysol script pysol.py for py2app * initial cut at updaing README git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@118 efabe8c0-fbe8-4139-b769-b5e6d273206e --- README | 23 ++++++++++++++++++++--- pysol => pysol.py | 0 setup.py | 2 +- setup_osx.py | 4 ++-- 4 files changed, 23 insertions(+), 6 deletions(-) rename pysol => pysol.py (100%) diff --git a/README b/README index e1c41730..2148ed9d 100644 --- a/README +++ b/README @@ -8,12 +8,12 @@ Requirements. - Python (2.3 or later) - Tkinter -** for sound support (not necessarily) ** +** for sound support (optional) ** - PySol-Sound-Server: http://www.pysol.org/ (mp3, wav, tracker music) or - PyGame: http://www.pygame.org/ (mp3, ogg, wav, midi, tracker music) -** other packages (not necessarily) ** +** other packages (optional) ** - Tile: http://tktable.sourceforge.net/tile/ (0.7.8 or later) - PIL (Python Image Library): http://www.pythonware.com/products/pil - Freecell Solver: http://vipe.technion.ac.il/~shlomif/freecell-solver/ @@ -26,5 +26,22 @@ See: http://www.python.org/doc/current/inst/ or just run from the source directory: -$ python pysol +$ python pysol.py + + +Install Extras. +--------------- + +** Music ** + - Copy some music files (mp3 for example) to ~/.PySolFC/music/ + + - Original PySol music can be download from: + ftp://ibiblio.org/pub/linux/games/solitaires/pysol-music-4.40.tar.gz + +** Cardsets ** + - Copy cardsets to ~/.PySolFC/cardsets + + - Additional cardsets can be downloaded from the PySolFC project page: + http://sourceforge.net/project/showfiles.php?group_id=150718 + diff --git a/pysol b/pysol.py similarity index 100% rename from pysol rename to pysol.py diff --git a/setup.py b/setup.py index cbdf0056..4ae9b92e 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ kw = { 'description' : 'PySol - a solitaire game collection', 'long_description' : long_description, 'license' : 'GPL', - 'scripts' : ['pysol'], + 'scripts' : ['pysol.py'], 'packages' : ['pysollib', 'pysollib.macosx', 'pysollib.tk', diff --git a/setup_osx.py b/setup_osx.py index f0d02c73..0b5eb30e 100644 --- a/setup_osx.py +++ b/setup_osx.py @@ -9,7 +9,7 @@ from subprocess import call from setuptools import setup from pysollib.settings import PACKAGE, VERSION, FC_VERSION -# build the ls py rule pages +# build the rule pages if not os.path.exists('data/html'): os.chdir('html-src') call('./gen-html.py', shell=True) @@ -58,7 +58,7 @@ PLIST = dict( CFBundleShortVersionString = '%s' % VERSION, NSHumanReadableCopyright = "Copyright (C) 1998-2003 Markus F.X.J. Oberhumer", ) -APP = ['pysollib/pysol.py'] +APP = ['pysol.py'] ICON_FILE = 'data/PySol.icns' DATA_FILES = ['docs', 'data', 'scripts','COPYING', 'README', SOLVER] RESOURCES = [os.path.join(TCL_EXTENSION_PATH, TILE)] if TILE else []