- 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-fa5697faa6a0develop
parent
58d267ea0a
commit
aae8da965a
41
setup.py
41
setup.py
|
@ -2,14 +2,33 @@
|
||||||
|
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(name = 'pyst',
|
try :
|
||||||
version = '0.2',
|
from asterisk.Version import VERSION
|
||||||
description = 'Asterisk related utility modules.',
|
except :
|
||||||
author = 'Karl Putland',
|
VERSION = None
|
||||||
author_email = 'kputland@users.sourceforge.net',
|
|
||||||
url = 'http://www.sourceforge.net/projects/pyst/',
|
description = []
|
||||||
packages = ['asterisk'],
|
f = open ('README')
|
||||||
license = 'Python Software Foundation License (agitb), Lesser General Public License',
|
logo_stripped = False
|
||||||
platforms = 'UNIX',
|
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'
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue