First pass of pep8'ing the code
diff --git a/setup.py b/setup.py
index fd3cf5e..fa753ac 100644
--- a/setup.py
+++ b/setup.py
@@ -9,23 +9,21 @@
 
 from setuptools import setup
 
-setup(name='plyxproto',
-      version='3.0.0',
-      description='xproto parser and processor',
-      author='Dusan Klinec (original protobuf parser), Sapan Bhatia (xproto extensions)',
-      author_email='sapan@opennetworking.org',
-      url='https://github.com/sb98052/plyprotobuf',
-      license='Apache Software License',
-
-      classifiers=[
-          'Development Status :: 5 - Production/Stable',
-          'Intended Audience :: Developers',
-          'Topic :: Software Development :: Build Tools',
-          'License :: OSI Approved :: Apache Software License',
-          'Programming Language :: Python :: 2',
-          'Programming Language :: Python :: 2.7'
-      ],
-      keywords='xproto protobuf xos parser',
-      packages=['plyxproto'],
-      install_requires=['ply']
-     )
+setup(
+    name='plyxproto',
+    version='3.0.0',
+    description='xproto parser and processor',
+    author='Dusan Klinec (original protobuf parser), Sapan Bhatia (xproto extensions), Zack Williams (maintenance)',
+    author_email='sapan@opennetworking.org',
+    url='https://github.com/sb98052/plyprotobuf',
+    license='Apache Software License',
+    classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Intended Audience :: Developers',
+        'Topic :: Software Development :: Build Tools',
+        'License :: OSI Approved :: Apache Software License',
+        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 2.7'],
+    keywords='xproto protobuf xos parser',
+    packages=['plyxproto'],
+    install_requires=['ply'])