javaclass

Change of setup.py

136:754d36821fc8
setup.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/setup.py	Fri Jan 21 17:05:03 2005 +0100
     1.3 @@ -0,0 +1,14 @@
     1.4 +#! /usr/bin/env python
     1.5 +
     1.6 +from distutils.core import setup
     1.7 +
     1.8 +setup(
     1.9 +    name         = "ClassFile",
    1.10 +    description  = "A Java class and package importer and utilities.",
    1.11 +    author       = "Paul Boddie",
    1.12 +    author_email = "paul@boddie.org.uk",
    1.13 +    url          = "http://www.boddie.org.uk/python/ClassFile.html",
    1.14 +    version      = "0.1",
    1.15 +    packages     = ["java", "javaclass"],
    1.16 +    scripts      = ["runclass"]
    1.17 +    )