From 5b6ce2a63a2408638bb7636639abfb1c771585d5 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 24 Feb 2014 20:16:10 -0600 Subject: some style fixes suggested by pep8-naming --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 81a50f44..a2a75504 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ requirements = [ ] -class cffi_build(build): +class CFFIBuild(build): """ This class exists, instead of just providing ``ext_modules=[...]`` directly in ``setup()`` because importing cryptography requires we have several @@ -110,6 +110,6 @@ setup( zip_safe=False, ext_package="cryptography", cmdclass={ - "build": cffi_build, + "build": CFFIBuild, } ) -- cgit v1.2.3