1#!/usr/bin/env python 2 3# Copyright Aleksey Gurtovoy 2007-2009 4# 5# Distributed under the Boost Software License, Version 1.0. 6# (See accompanying file LICENSE_1_0.txt or copy at 7# http://www.boost.org/LICENSE_1_0.txt) 8 9 10import sys, os 11from distutils.core import setup 12 13setup( 14 name="html_refdoc", 15 version=".1", 16 description="convert C++ rst documentation to a set of HTML pages/frames.", 17 author="Aleksey Gurtovoy", 18 author_email="agurtovoy@meta-comm.com", 19 packages=['docutils.writers.html4_refdoc', 'docutils.parsers.rst.directives'], 20 package_dir={'docutils.writers.html4_refdoc': 'writers/html4_refdoc' 21 ,'docutils.parsers.rst.directives': 'parsers/rst/directives' }, 22 package_data={'docutils.writers.html4_refdoc': ['frames.css']}, 23 scripts=["tools/rst2htmlrefdoc.py"], 24 ) 25