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 This directory contains support tools for the Python compiler package,
written in pure Python. To install the compiler modules so they're which is now part of the standard library.
available for use by third-party Python software, run 'python setup.py
install'.
compile.py Demo that compiles a Python module into a .pyc file compile.py Demo that compiles a Python module into a .pyc file
using the pure-Python compiler code. using the pure-Python compiler code.
...@@ -18,4 +16,3 @@ regrtest.py Runs the Python test suite using bytecode generated ...@@ -18,4 +16,3 @@ regrtest.py Runs the Python test suite using bytecode generated
by the pure-Python compiler code instead of the by the pure-Python compiler code instead of the
builtin compiler. 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