Change nested dictionary literal to match house style
diff --git a/setup.py b/setup.py
index b0ad2db..64e31ca 100644
--- a/setup.py
+++ b/setup.py
@@ -168,10 +168,14 @@
             argv[1] in ('--help-commands', '--version', 'clean', 'egg_info')):
         return {}
     else:
-        return dict(setup_requires=requirements,
-                    cmdclass=dict(build=CFFIBuild,
-                                  install=CFFIInstall,
-                                  test=PyTest))
+        return {
+            "setup_requires": requirements,
+            "cmdclass": {
+                "build": CFFIBuild,
+                "install": CFFIInstall,
+                "test": PyTest,
+            }
+        }
 
 
 with open(os.path.join(base_dir, "README.rst")) as f: