commit | 27291ffa319d0c5dc3d7eaaebd4ccbe6b44aa34b | [log] [tgz] |
---|---|---|
author | Anthony Sottile <asottile@umich.edu> | Thu Mar 13 08:41:35 2014 -0700 |
committer | Anthony Sottile <asottile@umich.edu> | Thu Mar 13 08:41:35 2014 -0700 |
tree | 35e45aa30139421138005bb172ab2f1b3792b504 |
Initial commit.
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..41dc28e --- /dev/null +++ b/setup.py
@@ -0,0 +1,12 @@ +from setuptools import find_packages +from setuptools import setup + +setup( + name='pre_commit_hooks', + version='0.0.0', + packages=find_packages('.', exclude=('tests*', 'testing*')), + install_requires=[ + 'argparse', + 'simplejson', + ], +)