changeset 582:b5d0b7a91809

Tidy whitespace
author Stefano Rivera <stefano@rivera.za.net>
date Tue, 10 Sep 2019 11:59:58 -0300
parents 8c037e4002c6
children 455f65ac777a
files setup.py
diffstat 1 files changed, 88 insertions(+), 87 deletions(-) [+]
line wrap: on
line diff
--- 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,
+)