# HG changeset patch # User Stefano Rivera # Date 1568127598 10800 # Node ID b5d0b7a918099d7700662e7fa8cb05a9e89a7332 # Parent 8c037e4002c69ace167f0b5d145ef24d4673e5b8 Tidy whitespace diff -r 8c037e4002c6 -r b5d0b7a91809 setup.py --- a/setup.py Mon Sep 09 20:28:19 2019 -0300 +++ b/setup.py Tue Sep 10 11:59:58 2019 -0300 @@ -14,99 +14,100 @@ # This should probably be pulled from constants.py VERSION_STR = "0.2" -setup( # Metadata - name="mutable-mamba", - version=VERSION_STR, - description="Mutable Mamba: Snake game for PyWeek 13", +setup( + name="mutable-mamba", + version=VERSION_STR, + description="Mutable Mamba: Snake game for PyWeek 13", - author=("Adrianna Pinska, Desilu Crossman, Gideon Visser, " - "Jeremy Thurgood, Neil Muller, Simon Cross, " - "Stefano Rivera"), - author_email="", + author=("Adrianna Pinska, Desilu Crossman, Gideon Visser, " + "Jeremy Thurgood, Neil Muller, Simon Cross, " + "Stefano Rivera"), + author_email="", - maintainer="Mamba Team", - maintainer_email="ctpug@googlegroups.com", + maintainer="Mamba Team", + maintainer_email="ctpug@googlegroups.com", - url="http://ctpug.org.za/", - download_url="https://ctpug.org.za/hg/mamba/", + url="http://ctpug.org.za/", + download_url="https://ctpug.org.za/hg/mamba/", - license="MIT", + license="MIT", - classifiers=[ - 'Development Status :: 4 - Beta', - 'Environment :: MacOS X', - 'Environment :: Win32 (MS Windows)', - 'Environment :: X11 Applications', - 'Intended Audience :: End Users/Desktop', - 'License :: OSI Approved :: MIT License', - 'Natural Language :: English', - 'Operating System :: Microsoft :: Windows', - 'Operating System :: POSIX', - 'Operating System :: MacOS :: MacOS X', - 'Programming Language :: Python :: 2.5', - 'Programming Language :: Python :: 2.6', - 'Topic :: Games/Entertainment :: Role-Playing', - 'Topic :: Games/Entertainment :: Arcade', - ], + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: MacOS X', + 'Environment :: Win32 (MS Windows)', + 'Environment :: X11 Applications', + 'Intended Audience :: End Users/Desktop', + 'License :: OSI Approved :: MIT License', + 'Natural Language :: English', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX', + 'Operating System :: MacOS :: MacOS X', + 'Programming Language :: Python :: 2.5', + 'Programming Language :: Python :: 2.6', + 'Topic :: Games/Entertainment :: Role-Playing', + 'Topic :: Games/Entertainment :: Arcade', + ], - platforms=[ - 'Linux', - 'Mac OS X', - 'Windows', - ], + platforms=[ + 'Linux', + 'Mac OS X', + 'Windows', + ], - # Dependencies - install_requires=[], + # Dependencies + install_requires=[], - # Files - packages=find_packages(), - scripts=[ - 'scripts/mamba', - ], + # Files + packages=find_packages(), + scripts=[ + 'scripts/mamba', + ], - # py2exe - console=['scripts/testconsole.py'], - windows=[{ - 'script': 'scripts/mamba', - 'icon_resources': [(0, "data/icons/program/icon.ico")], - }], - app=['scripts/mamba'], - options={ - 'py2exe': { - 'skip_archive': 1, - 'dist_dir': 'dist/mutable-mamba-%s' % VERSION_STR, - 'packages': [ - 'logging', 'encodings', 'mamba', - ], - 'includes': [ - # pygame - 'pygame', - ], - 'excludes': [ - 'numpy', - ], - 'ignores': [ - # all database modules - 'pgdb', 'Sybase', 'adodbapi', - 'kinterbasdb', 'psycopg', 'psycopg2', 'pymssql', - 'sapdb', 'pysqlite2', 'sqlite', 'sqlite3', - 'MySQLdb', 'MySQLdb.connections', - 'MySQLdb.constants.CR', 'MySQLdb.constants.ER', - # old datetime equivalents - 'DateTime', 'DateTime.ISO', - 'mx', 'mx.DateTime', 'mx.DateTime.ISO', - # email modules - 'email.Generator', 'email.Iterators', 'email.Utils', - ], - }, - 'py2app': { - 'app': ['run_game.py'], - 'argv_emulation': True, - 'iconfile': 'data/icons/program/icon.icns', - 'packages': [ - 'logging', 'encodings', 'pygame', 'mamba', 'data', - ], - 'excludes': ['numpy'], - }}, - include_package_data=True, - ) + # py2exe + console=['scripts/testconsole.py'], + windows=[{ + 'script': 'scripts/mamba', + 'icon_resources': [(0, "data/icons/program/icon.ico")], + }], + app=['scripts/mamba'], + options={ + 'py2exe': { + 'skip_archive': 1, + 'dist_dir': 'dist/mutable-mamba-%s' % VERSION_STR, + 'packages': [ + 'logging', 'encodings', 'mamba', + ], + 'includes': [ + # pygame + 'pygame', + ], + 'excludes': [ + 'numpy', + ], + 'ignores': [ + # all database modules + 'pgdb', 'Sybase', 'adodbapi', + 'kinterbasdb', 'psycopg', 'psycopg2', 'pymssql', + 'sapdb', 'pysqlite2', 'sqlite', 'sqlite3', + 'MySQLdb', 'MySQLdb.connections', + 'MySQLdb.constants.CR', 'MySQLdb.constants.ER', + # old datetime equivalents + 'DateTime', 'DateTime.ISO', + 'mx', 'mx.DateTime', 'mx.DateTime.ISO', + # email modules + 'email.Generator', 'email.Iterators', 'email.Utils', + ], + }, + 'py2app': { + 'app': ['run_game.py'], + 'argv_emulation': True, + 'iconfile': 'data/icons/program/icon.icns', + 'packages': [ + 'logging', 'encodings', 'pygame', 'mamba', 'data', + ], + 'excludes': ['numpy'], + } + }, + include_package_data=True, +)