From e424700d0bee9d0c0f99419da8798c5627aa1636 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sat, 28 Jul 2007 04:37:57 +0100 Subject: [PATCH] Include a setup.py for the install --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..2396a6e0 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name='Terminator', + version='0.1', + description='Terminator, the robot future of terminals', + author='Chris Jones', + author_email='cmsj@tenshu.net', + url='http://www.tenshu.net', + scripts=['terminator.py'], + ) + +