Merge pull request #72 from stepshal/argument
Remove spaces around keyword arguments assignments
This commit is contained in:
20
setup.py
20
setup.py
@@ -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):
|
||||
|
Reference in New Issue
Block a user