2005-01-21 | Paul Boddie | raw annotate files changeset graph | Fixed the package specifications in the setup script. |
1 #! /usr/bin/env python 2 3 from distutils.core import setup 4 5 setup( 6 name = "ClassFile", 7 description = "A Java class and package importer and utilities.", 8 author = "Paul Boddie", 9 author_email = "paul@boddie.org.uk", 10 url = "http://www.boddie.org.uk/python/ClassFile.html", 11 version = "0.1", 12 packages = ["javaclass", "java", "java.lang", "java.security"], 13 scripts = ["runclass.py"] 14 )