simple setup.py to install some interesting scripts in $(prefix)/bin.
diff --git a/Tools/scripts/setup.py b/Tools/scripts/setup.py
new file mode 100644
index 0000000..4d1a148
--- /dev/null
+++ b/Tools/scripts/setup.py
@@ -0,0 +1,16 @@
+from distutils.core import setup
+
+setup(
+  scripts=[
+    'byteyears.py',
+    'checkpyc.py',
+    'copytime.py',
+    'crlf.py',
+    'dutree.py',
+    'ftpmirror.py',
+    'h2py.py',
+    'lfcr.py',
+    '../../Lib/tabnanny.py',
+    'untabify.py',
+    ],
+  )