16 lines
465 B
Python
16 lines
465 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name = 'pyst',
|
|
version = '0.2',
|
|
description = 'Asterisk related utility modules.',
|
|
author = 'Karl Putland',
|
|
author_email = 'kputland@users.sourceforge.net',
|
|
url = 'http://www.sourceforge.net/projects/pyst/',
|
|
packages = ['asterisk'],
|
|
license = 'Python Software Foundation License (agitb), Lesser General Public License',
|
|
platforms = 'UNIX',
|
|
)
|
|
|