2007-07-28 03:37:57 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(name='Terminator',
|
2007-12-26 20:00:52 +00:00
|
|
|
version='0.6',
|
2007-07-28 03:37:57 +00:00
|
|
|
description='Terminator, the robot future of terminals',
|
|
|
|
author='Chris Jones',
|
|
|
|
author_email='cmsj@tenshu.net',
|
2007-07-28 12:10:30 +00:00
|
|
|
url='http://www.tenshu.net/terminator/',
|
2007-09-11 22:37:31 +00:00
|
|
|
license='GPL v2',
|
2007-08-25 14:33:24 +00:00
|
|
|
scripts=['terminator'],
|
2007-07-28 03:37:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|