mirror of
https://github.com/python/cpython.git
synced 2025-11-03 11:23:31 +00:00
Install the pydoc script
This commit is contained in:
parent
b68ef5081d
commit
aece4270b1
1 changed files with 4 additions and 1 deletions
5
setup.py
5
setup.py
|
|
@ -600,7 +600,10 @@ def main():
|
||||||
cmdclass = {'build_ext':PyBuildExt},
|
cmdclass = {'build_ext':PyBuildExt},
|
||||||
# The struct module is defined here, because build_ext won't be
|
# The struct module is defined here, because build_ext won't be
|
||||||
# called unless there's at least one extension module defined.
|
# 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
|
# --install-platlib
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue