diff options
author | Peter Odding <peter@peterodding.com> | 2014-07-12 01:18:50 +0200 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-09-29 11:44:31 -0500 |
commit | e327cf1f4ed2f45291866c6de1f035bd7f9bf80a (patch) | |
tree | 51c4d9034c42504d1dc10a0d5bbc5cf6cdcce3a2 | |
parent | 51ec05fc2475213ffbf8a87c5ff2e309d9a68520 (diff) | |
download | cryptography-e327cf1f4ed2f45291866c6de1f035bd7f9bf80a.tar.gz cryptography-e327cf1f4ed2f45291866c6de1f035bd7f9bf80a.tar.bz2 cryptography-e327cf1f4ed2f45291866c6de1f035bd7f9bf80a.zip |
Change nested dictionary literal to match house style
-rw-r--r-- | setup.py | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -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: |