javaclass

Changeset

154:0ed24e93f758
2005-01-23 Paul Boddie raw files shortlog changelog graph Added release procedures to the documentation. Changed the acquisition of version information in setup.py.
setup.py (file)
     1.1 --- a/setup.py	Sun Jan 23 01:59:27 2005 +0100
     1.2 +++ b/setup.py	Sun Jan 23 01:59:27 2005 +0100
     1.3 @@ -2,13 +2,15 @@
     1.4  
     1.5  from distutils.core import setup
     1.6  
     1.7 +import javaclass
     1.8 +
     1.9  setup(
    1.10      name         = "javaclass",
    1.11      description  = "A Java class and package importer with utilities.",
    1.12      author       = "Paul Boddie",
    1.13      author_email = "paul@boddie.org.uk",
    1.14      url          = "http://www.boddie.org.uk/python/javaclass.html",
    1.15 -    version      = "0.1",
    1.16 +    version      = javaclass.__version__,
    1.17      packages     = ["javaclass", "java", "java.lang", "java.security"],
    1.18      scripts      = ["runclass.py"]
    1.19      )