Commit 378b6467 authored by Jeremy Hylton's avatar Jeremy Hylton

Remove setup.py, unnecessary since compiler package is the std

library.

Update README.
parent 30ec6cec
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.
#!/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"])
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment