Adding sane version import code to setup module.

This will allow us to actually specify a legitimate version for PyPI.
develop
Randall Degges 2011-05-31 17:21:46 -07:00
parent 60b904bf10
commit 9782b61280
1 changed files with 3 additions and 5 deletions

View File

@ -2,10 +2,8 @@
from distutils.core import setup
try :
from asterisk.Version import VERSION
except :
VERSION = None
from asterisk import __version__ as version
description = []
f = open ('README')
@ -23,7 +21,7 @@ licenses = ( 'Python Software Foundation License'
setup \
( name = 'pyst2'
, version = VERSION
, version = version
, description = 'A Python Interface to Asterisk'
, long_description = ''.join (description)
, author = 'Karl Putland'