terminator/setup.py

15 lines
321 B
Python
Raw Normal View History

2007-07-28 03:37:57 +00:00
#!/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',
2007-07-28 12:10:30 +00:00
url='http://www.tenshu.net/terminator/',
2007-07-28 03:37:57 +00:00
scripts=['terminator.py'],
)