12 lines
270 B
Python
12 lines
270 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='jsh',
|
|
version='1.0',
|
|
description='API for implementing JSH streams in Python.',
|
|
author='Augmented Unix Userland MQP',
|
|
author_email='jsh@wpi.edu',
|
|
packages=['jsh'],
|
|
)
|