swc-installation-test-2.py: sort CHECKS into topics
authorW. Trevor King <wking@tremily.us>
Sun, 30 Dec 2012 14:55:23 +0000 (09:55 -0500)
committerW. Trevor King <wking@tremily.us>
Tue, 1 Jan 2013 14:49:45 +0000 (09:49 -0500)
swc-installation-test-2.py

index ebca9b11d445b962fd9fa5c92a15990fece0dec4..c22ae225e0f83d63722fe242dd3a6de78a0028ab 100755 (executable)
@@ -35,17 +35,24 @@ __version__ = '0.1'
 
 # Comment out any entries you don't need
 CHECKS = [
-    'python',
+# Shell
     'bash',
-    'easy_install',
+# Version control
     'git',
     'hg',              # Command line tool
     'mercurial',       # Python package
+# Build tools and packaging
     'make',
+    'easy_install',
+    'setuptools',
+# Testing
     'nosetests',       # Command line tool
     'nose',            # Python package
+# SQL
     'sqlite3',         # Command line tool
     'sqlite3-python',  # Python package
+# Python
+    'python',
     'IPython',
     'numpy',
     'scipy',
@@ -54,7 +61,6 @@ CHECKS = [
     'Cython',
     'networkx',
     'mayavi.mlab',
-    'setuptools',
     ]
 
 CHECKER = {}