From e327cf1f4ed2f45291866c6de1f035bd7f9bf80a Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Sat, 12 Jul 2014 01:18:50 +0200 Subject: Change nested dictionary literal to match house style --- setup.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index b0ad2db3..64e31cae 100644 --- a/setup.py +++ b/setup.py @@ -168,10 +168,14 @@ def keywords_with_side_effects(argv): 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: -- cgit v1.2.3