#!/usr/bin/python -u
##############################################################################
#
# Copyright (c) 2004 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Script to create a static version of the apidoc tool.

$Id: $
"""
import os
import sys

SOFTWARE_HOME = r"/usr/lib/python2.4/site-packages"

instance_lib = os.path.join(here, "lib", "python")

sys.path[:0] = [instance_lib, SOFTWARE_HOME]

from zope.app.apidoc.static import main
main()
