]> granicus.if.org Git - python/commitdiff
Remove setup.py, unnecessary since compiler package is the std
authorJeremy Hylton <jeremy@alum.mit.edu>
Thu, 20 Sep 2001 15:02:27 +0000 (15:02 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Thu, 20 Sep 2001 15:02:27 +0000 (15:02 +0000)
library.

Update README.

Tools/compiler/README
Tools/compiler/setup.py [deleted file]

index 291ce183235a159fca7bf871446ed5203423b53e..1885dd9468f7334741362e8841670570df093938 100644 (file)
@@ -1,7 +1,5 @@
-This directory contains modules for a a Python source to bytecode compiler
-written in pure Python.         To install the compiler modules so they're
-available for use by third-party Python software, run 'python setup.py
-install'.
+This directory contains support tools for the Python compiler package,
+which is now part of the standard library.
 
 compile.py     Demo that compiles a Python module into a .pyc file
                using the pure-Python compiler code.
@@ -18,4 +16,3 @@ regrtest.py   Runs the Python test suite using bytecode generated
                by the pure-Python compiler code instead of the
                builtin compiler.
 
-setup.py       Setup file for installing the compiler code as a package.
diff --git a/Tools/compiler/setup.py b/Tools/compiler/setup.py
deleted file mode 100644 (file)
index faff7fe..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env python
-
-from distutils.core import setup
-
-setup(name = "compiler",
-      version = "1.0",
-      author = "Jeremy Hylton",
-      author_email = "jeremy@zope.com",
-      packages = ["compiler"])