Initial commit.

This commit is contained in:
Anthony Sottile 2014-03-12 20:25:19 -07:00
commit 7bb7f4a483
10 changed files with 329 additions and 0 deletions

12
setup.py Normal file
View file

@ -0,0 +1,12 @@
from setuptools import find_packages
from setuptools import setup
setup(
name='pre_commit',
version='0.3.4',
packages=find_packages('.', exclude=('tests*', 'testing*')),
install_requires=[
'argparse',
'simplejson',
],
)