added install and uninstall hooks

This commit is contained in:
Ken Struys 2014-03-13 13:59:05 -07:00
parent 9914255ffa
commit 7e74821a5d
7 changed files with 79 additions and 19 deletions

View file

@ -5,12 +5,14 @@ setup(
name='pre_commit',
version='0.0.0',
packages=find_packages('.', exclude=('tests*', 'testing*')),
package_data={
'pre_commit': [
'resources/pre-commit.sh'
]
},
install_requires=[
'argparse',
'plumbum',
'simplejson',
],
scripts=[
'scripts/pre-commit.py',
],
)