Files
pre-commit/setup.py
Anthony Sottile 7bb7f4a483 Initial commit.
2014-03-12 20:25:19 -07:00

13 lines
257 B
Python

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