Add the first hook

This commit is contained in:
Anthony Sottile 2014-03-13 18:42:03 -07:00
parent cd74dc150c
commit 5e713f8878
3 changed files with 9 additions and 2 deletions

7
manifest.yaml Normal file
View File

@ -0,0 +1,7 @@
-
id: pyflakes
name: Pyflakes
description: This validator runs pyflakes.
entry: pyflakes
language: python

View File

@ -1,10 +1,9 @@
argparse
pyyaml
pyflakes
simplejson
# Testing requirements
coverage
ipdb
mock
pyflakes
pytest

View File

@ -7,6 +7,7 @@ setup(
packages=find_packages('.', exclude=('tests*', 'testing*')),
install_requires=[
'argparse',
'pyflakes',
'simplejson',
],
)