Code

4b3f9149cf7642c20894fccba3c882c1eae52d07
[roundup.git] / setup.py
1 #! /usr/bin/env python
2 # $Id: setup.py,v 1.7 2001-07-29 08:37:58 richard Exp $
4 from distutils.core import setup, Extension
5 from distutils.util import get_platform
7 from glob import glob
8 import os
10 templates = 'classic', 'extended'
11 packagelist = [ 'roundup', 'roundup.backends', 'roundup.templates' ]
12 installdatafiles = []
14 for t in templates:
15     packagelist.append('roundup.templates.%s'%t)
16     packagelist.append('roundup.templates.%s.detectors'%t)
17     tfiles = glob(os.path.join('roundup','templates', t, 'html', '*'))
18     tfiles = filter(os.path.isfile, tfiles)
21 setup ( name = "roundup", 
22         version = "0.2.2",
23         description = "Roundup issue tracking system.",
24         author = "Richard Jones",
25         author_email = "richard@sourceforge.net",
26         url = 'http://sourceforge.net/projects/roundup/',
27         packages = packagelist,
28         scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server']
29 )
31 #
32 # $Log: not supported by cvs2svn $
33 # Revision 1.6  2001/07/29 07:01:39  richard
34 # Added vim command to all source so that we don't get no steenkin' tabs :)
35 #
36 # Revision 1.5  2001/07/28 00:39:18  richard
37 # changes for the 0.2.1 distribution build.
38 #
39 # Revision 1.4  2001/07/27 07:20:17  richard
40 # Makefile is now obsolete - setup does what it used to do.
41 #
42 # Revision 1.3  2001/07/27 06:56:25  richard
43 # Added scripts to the setup and added the config so the default script
44 # install dir is /usr/local/bin.
45 #
46 # Revision 1.2  2001/07/26 07:14:27  richard
47 # Made setup.py executable, added id and log.
48 #
49 #
50 #
51 # vim: set filetype=python ts=4 sw=4 et si