From 51382e1b453011308ff5f36140d11d2e1920d4b4 Mon Sep 17 00:00:00 2001 From: richard Date: Sun, 29 Jul 2001 09:43:46 +0000 Subject: [PATCH] Make sure that the htmlbase is up-to-date when we build a source dist. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@139 57a73879-2fb5-44c3-a270-3262357dd7e2 --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4b3f914..6893d17 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ setup ( name = "roundup", # # $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 :) # -- 2.30.2