mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
flake8
This commit is contained in:
parent
c3af677cf7
commit
845c72363a
3 changed files with 43 additions and 42 deletions
58
setup.py
58
setup.py
|
@ -6,7 +6,7 @@ from distutils.core import setup
|
||||||
from pysollib.settings import VERSION
|
from pysollib.settings import VERSION
|
||||||
from pysollib.settings import PACKAGE_URL
|
from pysollib.settings import PACKAGE_URL
|
||||||
if os.name == 'nt':
|
if os.name == 'nt':
|
||||||
import py2exe
|
eval('import py2exe')
|
||||||
|
|
||||||
if os.name == 'posix':
|
if os.name == 'posix':
|
||||||
data_dir = 'share/PySolFC'
|
data_dir = 'share/PySolFC'
|
||||||
|
@ -24,7 +24,7 @@ ddirs = [
|
||||||
'themes',
|
'themes',
|
||||||
'tcl',
|
'tcl',
|
||||||
]
|
]
|
||||||
for s in file('MANIFEST.in'):
|
for s in open('MANIFEST.in'):
|
||||||
if s.startswith('graft data/cardset-'):
|
if s.startswith('graft data/cardset-'):
|
||||||
ddirs.append(s[11:].strip())
|
ddirs.append(s[11:].strip())
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ for d in ddirs:
|
||||||
if root.find('.svn') >= 0:
|
if root.find('.svn') >= 0:
|
||||||
continue
|
continue
|
||||||
if files:
|
if files:
|
||||||
#files = map(lambda f: os.path.join(root, f), files)
|
# files = map(lambda f: os.path.join(root, f), files)
|
||||||
files = [os.path.join(root, f) for f in files]
|
files = [os.path.join(root, f) for f in files]
|
||||||
data_files.append((os.path.join(data_dir, root[5:]), files))
|
data_files.append((os.path.join(data_dir, root[5:]), files))
|
||||||
|
|
||||||
|
@ -43,15 +43,15 @@ if os.name == 'posix':
|
||||||
data_files.append(('share/pixmaps', ['data/pysol.xbm', 'data/pysol.xpm']))
|
data_files.append(('share/pixmaps', ['data/pysol.xbm', 'data/pysol.xpm']))
|
||||||
data_files.append(('share/icons',
|
data_files.append(('share/icons',
|
||||||
['data/images/misc/pysol01.png',
|
['data/images/misc/pysol01.png',
|
||||||
'data/images/misc/pysol02.png',]))
|
'data/images/misc/pysol02.png', ]))
|
||||||
for l in ('ru', 'ru_RU'):
|
for l in ('ru', 'ru_RU'):
|
||||||
data_files.append(('share/locale/%s/LC_MESSAGES' % l,
|
data_files.append(('share/locale/%s/LC_MESSAGES' % l,
|
||||||
['locale/%s/LC_MESSAGES/pysol.mo' % l]))
|
['locale/%s/LC_MESSAGES/pysol.mo' % l]))
|
||||||
data_files.append((data_dir, ['data/pysolfc.glade']))
|
data_files.append((data_dir, ['data/pysolfc.glade']))
|
||||||
data_files.append(('share/applications', ['data/pysol.desktop']))
|
data_files.append(('share/applications', ['data/pysol.desktop']))
|
||||||
|
|
||||||
##from pprint import pprint; pprint(data_files)
|
# from pprint import pprint; pprint(data_files)
|
||||||
##import sys; sys.exit()
|
# import sys; sys.exit()
|
||||||
|
|
||||||
long_description = '''\
|
long_description = '''\
|
||||||
PySolFC is a collection of more than 1000 solitaire card games.
|
PySolFC is a collection of more than 1000 solitaire card games.
|
||||||
|
@ -62,29 +62,29 @@ plug-ins, an integrated HTML help browser, and lots of documentation.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
kw = {
|
kw = {
|
||||||
'name' : 'PySolFC',
|
'name': 'PySolFC',
|
||||||
'version' : VERSION,
|
'version': VERSION,
|
||||||
'url' : PACKAGE_URL,
|
'url': PACKAGE_URL,
|
||||||
'author' : 'Skomoroh',
|
'author': 'Skomoroh',
|
||||||
'author_email' : 'skomoroh@gmail.com',
|
'author_email': 'skomoroh@gmail.com',
|
||||||
'description' : 'a Python solitaire game collection',
|
'description': 'a Python solitaire game collection',
|
||||||
'long_description' : long_description,
|
'long_description': long_description,
|
||||||
'license' : 'GPL',
|
'license': 'GPL',
|
||||||
'scripts' : ['pysol.py'],
|
'scripts': ['pysol.py'],
|
||||||
'packages' : ['pysollib',
|
'packages': ['pysollib',
|
||||||
'pysollib.configobj',
|
'pysollib.configobj',
|
||||||
'pysollib.macosx',
|
'pysollib.macosx',
|
||||||
'pysollib.winsystems',
|
'pysollib.winsystems',
|
||||||
'pysollib.tk',
|
'pysollib.tk',
|
||||||
'pysollib.tile',
|
'pysollib.tile',
|
||||||
'pysollib.pysolgtk',
|
'pysollib.pysolgtk',
|
||||||
'pysollib.ui',
|
'pysollib.ui',
|
||||||
'pysollib.ui.tktile',
|
'pysollib.ui.tktile',
|
||||||
'pysollib.games',
|
'pysollib.games',
|
||||||
'pysollib.games.special',
|
'pysollib.games.special',
|
||||||
'pysollib.games.ultra',
|
'pysollib.games.ultra',
|
||||||
'pysollib.games.mahjongg'],
|
'pysollib.games.mahjongg'],
|
||||||
'data_files' : data_files,
|
'data_files': data_files,
|
||||||
}
|
}
|
||||||
|
|
||||||
if os.name == 'nt':
|
if os.name == 'nt':
|
||||||
|
|
25
setup_osx.py
25
setup_osx.py
|
@ -3,8 +3,10 @@ Usage:
|
||||||
python setup.py py2app
|
python setup.py py2app
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os, sys
|
import os
|
||||||
|
import sys
|
||||||
import shutil
|
import shutil
|
||||||
|
import Tkinter
|
||||||
from subprocess import call
|
from subprocess import call
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
from pysollib.settings import PACKAGE, VERSION
|
from pysollib.settings import PACKAGE, VERSION
|
||||||
|
@ -26,7 +28,6 @@ call("./scripts/all_games.py > docs/all_games.html", shell=True)
|
||||||
|
|
||||||
# Use Tile widgets, if they are installed.
|
# Use Tile widgets, if they are installed.
|
||||||
# http://tktable.sourceforge.net/tile/
|
# http://tktable.sourceforge.net/tile/
|
||||||
import Tkinter
|
|
||||||
root = Tkinter.Tk()
|
root = Tkinter.Tk()
|
||||||
root.withdraw()
|
root.withdraw()
|
||||||
try:
|
try:
|
||||||
|
@ -52,19 +53,19 @@ GETINFO_STRING = "PySol Fan Club Edition \
|
||||||
%s %s, (C) 1998-2003 Markus F.X.J Oberhumer \
|
%s %s, (C) 1998-2003 Markus F.X.J Oberhumer \
|
||||||
(C) 2006-2007 Skomoroh" % (PACKAGE, VERSION)
|
(C) 2006-2007 Skomoroh" % (PACKAGE, VERSION)
|
||||||
PLIST = dict(
|
PLIST = dict(
|
||||||
CFBundleDevelopmentRegion = 'en_US',
|
CFBundleDevelopmentRegion='en_US',
|
||||||
CFBundleExecutable = PACKAGE,
|
CFBundleExecutable=PACKAGE,
|
||||||
CFBundleDisplayName = PACKAGE,
|
CFBundleDisplayName=PACKAGE,
|
||||||
CFBundleGetInfoString = GETINFO_STRING,
|
CFBundleGetInfoString=GETINFO_STRING,
|
||||||
CFBundleIdentifier = 'net.sourceforge.pysolfc',
|
CFBundleIdentifier='net.sourceforge.pysolfc',
|
||||||
CFBundleName = PACKAGE,
|
CFBundleName=PACKAGE,
|
||||||
CFBundleVersion = '%s' % VERSION,
|
CFBundleVersion='%s' % VERSION,
|
||||||
CFBundleShortVersionString = '%s' % VERSION,
|
CFBundleShortVersionString='%s' % VERSION,
|
||||||
NSHumanReadableCopyright = "Copyright (C) 1998-2003 Markus F.X.J. Oberhumer",
|
NSHumanReadableCopyright="Copyright (C) 1998-2003 Markus F.X.J. Oberhumer",
|
||||||
)
|
)
|
||||||
APP = ['pysol.py']
|
APP = ['pysol.py']
|
||||||
ICON_FILE = 'data/PySol.icns'
|
ICON_FILE = 'data/PySol.icns'
|
||||||
DATA_FILES = ['docs', 'data', 'scripts','COPYING', 'README.md'] + SOLVER
|
DATA_FILES = ['docs', 'data', 'scripts', 'COPYING', 'README.md'] + SOLVER
|
||||||
RESOURCES = [os.path.join(TCL_EXTENSION_PATH, TILE)] if TILE else []
|
RESOURCES = [os.path.join(TCL_EXTENSION_PATH, TILE)] if TILE else []
|
||||||
FRAMEWORKS = [SOLVER_LIB_PATH] if SOLVER_LIB_PATH else []
|
FRAMEWORKS = [SOLVER_LIB_PATH] if SOLVER_LIB_PATH else []
|
||||||
OPTIONS = dict(argv_emulation=True,
|
OPTIONS = dict(argv_emulation=True,
|
||||||
|
|
|
@ -26,7 +26,7 @@ my %skip =
|
||||||
|
|
||||||
# my $cmd = shell_quote( 'flake8', '.' );
|
# my $cmd = shell_quote( 'flake8', '.' );
|
||||||
my $cmd = shell_quote( 'flake8',
|
my $cmd = shell_quote( 'flake8',
|
||||||
grep { not exists $skip{$_} } glob('pysol.py ./pysollib/*.py ./pysollib/[cmgpuw]*/{*/*.py,*.py} ./pysollib/tile/*.py ./pysollib/ui/tktile/*.py') );
|
grep { not exists $skip{$_} } glob('*.py ./pysollib/*.py ./pysollib/[cmgpuw]*/{*/*.py,*.py} ./pysollib/tile/*.py ./pysollib/ui/tktile/*.py') );
|
||||||
|
|
||||||
# TEST
|
# TEST
|
||||||
eq_or_diff( scalar(`$cmd`), '', "flake8 is happy with the code." );
|
eq_or_diff( scalar(`$cmd`), '', "flake8 is happy with the code." );
|
||||||
|
|
Loading…
Add table
Reference in a new issue