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