Add trailing whitespace fixer.

This commit is contained in:
Anthony Sottile 2014-03-14 15:18:29 -07:00
parent 10c042c99c
commit acd9eaf6ed
6 changed files with 44 additions and 2 deletions

View file

@ -7,12 +7,14 @@ setup(
packages=find_packages('.', exclude=('tests*', 'testing*')),
install_requires=[
'argparse',
'plumbum',
'pyflakes',
'simplejson',
],
entry_points={
'console_scripts': [
'debug-statement-hook = pre_commit_hooks.debug_statement_hook:entry',
'trailing-whitespace-fixer = pre_commit_hooks.railing_whitespace_fixer:entry',
],
},
)