Merge pull request #72 from stepshal/argument

Remove spaces around keyword arguments assignments
This commit is contained in:
Graham Dumpleton
2016-06-15 15:41:37 +10:00
committed by GitHub

View File

@@ -33,16 +33,16 @@ class optional_build_ext(build_ext):
raise BuildExtFailed()
setup_kwargs = dict(
name = 'wrapt',
version = '1.10.8',
description = 'Module for decorators, wrappers and monkey patching.',
long_description = open('README.rst').read(),
author = 'Graham Dumpleton',
author_email = 'Graham.Dumpleton@gmail.com',
license = 'BSD',
url = 'https://github.com/GrahamDumpleton/wrapt',
packages = ['wrapt'],
package_dir = {'': 'src'},
name='wrapt',
version='1.10.8',
description='Module for decorators, wrappers and monkey patching.',
long_description=open('README.rst').read(),
author='Graham Dumpleton',
author_email='Graham.Dumpleton@gmail.com',
license='BSD',
url='https://github.com/GrahamDumpleton/wrapt',
packages=['wrapt'],
package_dir={'': 'src'},
)
def run_setup(with_extensions):