- fix setup to include version number and description

git-svn-id: https://pyst.svn.sourceforge.net/svnroot/pyst/pyst/trunk@7 01a3061f-1c3a-49da-a2a0-fa5697faa6a0
develop
ralf 2010-06-18 10:02:14 +00:00
parent 58d267ea0a
commit aae8da965a
1 changed files with 30 additions and 11 deletions

View File

@ -2,14 +2,33 @@
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',
)
try :
from asterisk.Version import VERSION
except :
VERSION = None
description = []
f = open ('README')
logo_stripped = False
for line in f :
if not logo_stripped and line.strip () :
continue
logo_stripped = True
description.append (line)
licenses = ( 'Python Software Foundation License (agitb)'
, 'GNU Library or Lesser General Public License (LGPL)'
)
setup \
( name = 'pyst'
, version = VERSION
, description = 'A Python Interface to Asterisk'
, long_description = ''.join (description)
, author = 'Karl Putland'
, author_email = 'kputland@users.sourceforge.net'
, url = 'http://www.sourceforge.net/projects/pyst/'
, packages = ['asterisk']
, license = ', '.join (licenses)
, platforms = 'UNIX'
)