summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-09-20 15:02:27 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-09-20 15:02:27 (GMT)
commit5953b40442369883db9c9f72c759587ad612ec00 (patch)
treecd667d9c3ac651a9b3e4e364d4516a35dbbf1688 /Tools
parente54b5b4f81d7275c1c76f1ae1a757709fca1bb2b (diff)
downloadcpython-5953b40442369883db9c9f72c759587ad612ec00.zip
cpython-5953b40442369883db9c9f72c759587ad612ec00.tar.gz
cpython-5953b40442369883db9c9f72c759587ad612ec00.tar.bz2
Remove setup.py, unnecessary since compiler package is the std
library. Update README.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/compiler/README7
-rw-r--r--Tools/compiler/setup.py9
2 files changed, 2 insertions, 14 deletions
diff --git a/Tools/compiler/README b/Tools/compiler/README
index 291ce18..1885dd9 100644
--- a/Tools/compiler/README
+++ b/Tools/compiler/README
@@ -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
index faff7fe..0000000
--- a/Tools/compiler/setup.py
+++ /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"])