Code

make setup abort if tests fail
[roundup.git] / setup.py
1 #! /usr/bin/env python
2 #
3 # Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/)
4 # This module is free software, and you may redistribute it and/or modify
5 # under the same terms as Python, so long as this copyright message and
6 # disclaimer are retained in their original form.
7 #
8 # IN NO EVENT SHALL BIZAR SOFTWARE PTY LTD BE LIABLE TO ANY PARTY FOR
9 # DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
10 # OUT OF THE USE OF THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE
11 # POSSIBILITY OF SUCH DAMAGE.
12 #
13 # BIZAR SOFTWARE PTY LTD SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
15 # FOR A PARTICULAR PURPOSE.  THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
18
19 # $Id: setup.py,v 1.27 2002-01-05 02:09:46 richard Exp $
21 from distutils.core import setup, Extension
22 from distutils.util import get_platform
24 from glob import glob
25 import sys,os
26 from roundup.templatebuilder import makeHtmlBase
28 print 'Running unit tests...'
29 import test
30 if not test.go():
31     sys.exit(0)
34 def isTemplateDir(dir):
35     return dir[0] != '.' and dir != 'CVS' and os.path.isdir(dir) \
36         and os.path.isfile(os.path.join(dir, '__init__.py'))
38 templates = map(os.path.basename, filter(isTemplateDir,
39     glob(os.path.join('roundup', 'templates', '*'))))
40 packagelist = [
41     'roundup',
42     'roundup.backends',
43     'roundup.templates'
44 ]
45 installdatafiles = [
46     ('share/roundup/cgi-bin', ['cgi-bin/roundup.cgi']),
47
49 for template in templates:
50     tdir = os.path.join('roundup', 'templates', template)
51     makeHtmlBase(tdir)
53     # add the template package and subpackage
54     packagelist.append('roundup.templates.%s' % template)
55     packagelist.append('roundup.templates.%s.detectors' % template)
57     # scan for data files
58     tfiles = glob(os.path.join(tdir, 'html', '*'))
59     tfiles = filter(os.path.isfile, tfiles)
60     installdatafiles.append(
61         ('share/roundup/templates/%s/html' % template, tfiles)
62     )
65 setup(
66     name = "roundup", 
67     version = "0.4.0b1",
68     description = "Roundup issue tracking system.",
69     author = "Richard Jones",
70     author_email = "richard@users.sourceforge.net",
71     url = 'http://sourceforge.net/projects/roundup/',
72     packages = packagelist,
73     scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server'],
74     data_files =  installdatafiles
75 )
78 #
79 # $Log: not supported by cvs2svn $
80 # Revision 1.26  2001/12/08 07:06:20  jhermann
81 # Install html template files to share/roundup/templates
82 #
83 # Revision 1.25  2001/11/21 23:42:54  richard
84 # Some version number and documentation fixes.
85 #
86 # Revision 1.24  2001/11/06 22:32:15  jhermann
87 # Install roundup.cgi to share/roundup
88 #
89 # Revision 1.23  2001/10/17 06:04:00  richard
90 # Beginnings of an interactive mode for roundup-admin
91 #
92 # Revision 1.22  2001/10/11 05:01:28  richard
93 # Prep for pre-release #2
94 #
95 # Revision 1.21  2001/10/10 04:18:38  richard
96 # Getting ready for a preview release for 0.3.0.
97 #
98 # Revision 1.20  2001/10/08 21:49:30  richard
99 # Minor pre- 0.3.0 changes
101 # Revision 1.19  2001/09/10 09:48:35  richard
102 # Started changes log for 0.2.9
104 # Revision 1.18  2001/08/30 06:01:17  richard
105 # Fixed missing import in mailgw :(
107 # Revision 1.17  2001/08/08 03:29:35  richard
108 # Next release is 0.2.6
110 # Revision 1.16  2001/08/07 00:24:42  richard
111 # stupid typo
113 # Revision 1.15  2001/08/07 00:15:51  richard
114 # Added the copyright/license notice to (nearly) all files at request of
115 # Bizar Software.
117 # Revision 1.14  2001/08/06 23:57:20  richard
118 # Am now bundling unittest with the package so that everyone can use the unit
119 # tests.
121 # Revision 1.13  2001/08/03 07:18:57  richard
122 # updated version number for 0.2.6
124 # Revision 1.12  2001/08/03 02:51:06  richard
125 # detect unit tests
127 # Revision 1.11  2001/08/03 01:54:58  richard
128 # Started stuff off for the 0.2.5 release
130 # Revision 1.10  2001/07/30 07:17:44  richard
131 # Just making sure we've got the right version in there for development.
133 # Revision 1.9  2001/07/29 23:34:26  richard
134 # Added unit tests so they're run whenever we package/install/whatever.
136 # Revision 1.8  2001/07/29 09:43:46  richard
137 # Make sure that the htmlbase is up-to-date when we build a source dist.
139 # Revision 1.7  2001/07/29 08:37:58  richard
140 # changes
142 # Revision 1.6  2001/07/29 07:01:39  richard
143 # Added vim command to all source so that we don't get no steenkin' tabs :)
145 # Revision 1.5  2001/07/28 00:39:18  richard
146 # changes for the 0.2.1 distribution build.
148 # Revision 1.4  2001/07/27 07:20:17  richard
149 # Makefile is now obsolete - setup does what it used to do.
151 # Revision 1.3  2001/07/27 06:56:25  richard
152 # Added scripts to the setup and added the config so the default script
153 # install dir is /usr/local/bin.
155 # Revision 1.2  2001/07/26 07:14:27  richard
156 # Made setup.py executable, added id and log.
160 # vim: set filetype=python ts=4 sw=4 et si