pre-commit-hooks/setup.py
2014-03-13 08:41:35 -07:00

12 lines
263 B
Python

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',
],
)