javaclass

setup.py

164:f83c8a6dd935
2005-01-27 Paul Boddie Improved exceptions when classes cannot be imported. Changed the definition of the "wide" bytecode method to just raise an exception.
     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     )