# HG changeset patch # User Paul Boddie # Date 1106441967 -3600 # Node ID 0ed24e93f7586c0f50b751a6353d59870a0ab83f # Parent c9d3a0aa735621aa26a6f56713f8efcac6a0ba4f Added release procedures to the documentation. Changed the acquisition of version information in setup.py. diff -r c9d3a0aa7356 -r 0ed24e93f758 setup.py --- a/setup.py Sun Jan 23 01:59:27 2005 +0100 +++ b/setup.py Sun Jan 23 01:59:27 2005 +0100 @@ -2,13 +2,15 @@ from distutils.core import setup +import javaclass + setup( name = "javaclass", description = "A Java class and package importer with utilities.", author = "Paul Boddie", author_email = "paul@boddie.org.uk", url = "http://www.boddie.org.uk/python/javaclass.html", - version = "0.1", + version = javaclass.__version__, packages = ["javaclass", "java", "java.lang", "java.security"], scripts = ["runclass.py"] )