15 lines
309 B
Python
15 lines
309 B
Python
|
#!/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'],
|
||
|
)
|
||
|
|
||
|
|