python-adfs

changeset 44:374aa4ac482c

Modified the cmdsyntax.py check and updated the version number.
author David Boddie <david@boddie.org.uk>
date Tue Apr 15 23:46:01 2003 +0200
parents 1a0587b13329
children c7dac854aca5
files setup.py
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line diff
     1.1 --- a/setup.py	Tue Apr 15 23:42:23 2003 +0200
     1.2 +++ b/setup.py	Tue Apr 15 23:46:01 2003 +0200
     1.3 @@ -9,16 +9,16 @@
     1.4  
     1.5  except ImportError:
     1.6  
     1.7 -    print "Apologies:"
     1.8 +    print "Information:"
     1.9      print
    1.10 -    print "You need the cmdsyntax module to be able to use the ADF2INF.py"
    1.11 -    print "utility. You can still install the ADFSlib module if you want."
    1.12 +    print "The cmdsyntax module is not installed. The ADF2INF.py utility"
    1.13 +    print "will use getopt for its argument handling."
    1.14      print
    1.15      print "See http://www.boddie.org.uk/david/Projects/Python/CMDSyntax"
    1.16      print "for details of how to obtain the cmdsyntax module."
    1.17      print
    1.18      q = raw_input(
    1.19 -        "Do you wish to continue installing the ADFSlib module? [yes]/no:"
    1.20 +        "Do you wish to continue installing? [yes]/no:"
    1.21          )
    1.22      
    1.23      if q != "yes" and q != "":
    1.24 @@ -32,7 +32,7 @@
    1.25      author="David Boddie",
    1.26      author_email="david@boddie.org.uk",
    1.27      url="http://www.boddie.org.uk/david/Projects/Python/ADF2INF",
    1.28 -    version="0.10",
    1.29 +    version="0.11",
    1.30      py_modules=["ADFSlib"],
    1.31      scripts=["ADF2INF.py"]
    1.32      )