pep8: Add import (sys) and newline
diff --git a/setup.py b/setup.py
index 48343ca..df29b04 100644
--- a/setup.py
+++ b/setup.py
@@ -11,6 +11,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 import os
+import sys
 from distutils.command.build import build
 
 from setuptools import setup, find_packages
@@ -75,6 +76,7 @@
         TestCommand.finalize_options(self)
         self.test_args = []
         self.test_suite = True
+        
     def run_tests(self):
         # Import here because in module scope the eggs are not loaded.
         import pytest