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