From aece4270b1de4777eef3f2aadd7aaf3ac9b69cee Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Wed, 28 Feb 2001 20:56:49 +0000 Subject: Install the pydoc script --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a40715c..40e65d4 100644 --- a/setup.py +++ b/setup.py @@ -600,7 +600,10 @@ def main(): cmdclass = {'build_ext':PyBuildExt}, # The struct module is defined here, because build_ext won't be # called unless there's at least one extension module defined. - ext_modules=[Extension('struct', ['structmodule.c'])] + ext_modules=[Extension('struct', ['structmodule.c'])], + + # Scripts to install + scripts = ['Tools/scripts/pydoc'] ) # --install-platlib -- cgit v0.12