pre-commit-hooks/setup.py
2014-03-13 18:42:03 -07:00

13 lines
283 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',
'pyflakes',
'simplejson',
],
)