summaryrefslogtreecommitdiff
path: root/sandbox/agurtovoy/html_frames/setup.py
blob: adb9083bdd547e02270fb233fa22c8b4b56c3545 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python

# Author: Aleksey Gurtovoy
# Contact: agurtovoy@meta-comm.com
# Revision: $Revision$
# Date: $Date$
# Copyright: This module has been placed in the public domain.


import sys, os
from distutils.core import setup

setup(
    name="html_frames",
    version=".2",
    description="convert rst to a set of HTML pages/frames.",
    author="Aleksey Gurtovoy",
    author_email="agurtovoy@meta-comm.com",
    packages=['docutils.writers.html4_frames'],
    package_dir={'docutils.writers.html4_frames': 'writers/html4_frames'},
    package_data={'docutils.writers.html4_frames': ['style.css']},
    scripts=["tools/rst2htmlframes.py"],
    )