Mercurial > p > roundup > code
changeset 133:4377732e04bb
Make sure that the htmlbase is up-to-date when we build a source dist.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sun, 29 Jul 2001 09:43:46 +0000 |
| parents | b7c99b997080 |
| children | d3ffcf862fb7 |
| files | setup.py |
| diffstat | 1 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Sun Jul 29 09:33:06 2001 +0000 +++ b/setup.py Sun Jul 29 09:43:46 2001 +0000 @@ -1,17 +1,19 @@ #! /usr/bin/env python -# $Id: setup.py,v 1.7 2001-07-29 08:37:58 richard Exp $ +# $Id: setup.py,v 1.8 2001-07-29 09:43:46 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform from glob import glob import os +from roundup.templatebuilder import makeHtmlBase templates = 'classic', 'extended' packagelist = [ 'roundup', 'roundup.backends', 'roundup.templates' ] installdatafiles = [] for t in templates: + makeHtmlBase(os.path.join('roundup', 'templates', t)) packagelist.append('roundup.templates.%s'%t) packagelist.append('roundup.templates.%s.detectors'%t) tfiles = glob(os.path.join('roundup','templates', t, 'html', '*')) @@ -30,6 +32,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.7 2001/07/29 08:37:58 richard +# changes +# # Revision 1.6 2001/07/29 07:01:39 richard # Added vim command to all source so that we don't get no steenkin' tabs :) #
