javaclass

setup.py

154:0ed24e93f758
2005-01-23 Paul Boddie Added release procedures to the documentation. Changed the acquisition of version information in setup.py.
     1 #! /usr/bin/env python     2      3 from distutils.core import setup     4      5 import javaclass     6      7 setup(     8     name         = "javaclass",     9     description  = "A Java class and package importer with utilities.",    10     author       = "Paul Boddie",    11     author_email = "paul@boddie.org.uk",    12     url          = "http://www.boddie.org.uk/python/javaclass.html",    13     version      = javaclass.__version__,    14     packages     = ["javaclass", "java", "java.lang", "java.security"],    15     scripts      = ["runclass.py"]    16     )