sphinx/convert.py

26 lines
585 B
Python
Raw Normal View History

2007-07-23 04:02:25 -05:00
# -*- coding: utf-8 -*-
"""
Convert the Python documentation to Sphinx
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: 2007 by Georg Brandl.
:license: Python license.
"""
import sys
import os
from converter import convert_dir
if __name__ == '__main__':
try:
rootdir = sys.argv[1]
destdir = os.path.abspath(sys.argv[2])
except IndexError:
print "usage: convert.py docrootdir destdir"
sys.exit()
assert os.path.isdir(os.path.join(rootdir, 'texinputs'))
os.chdir(rootdir)
convert_dir(destdir, *sys.argv[3:])