Code

changes for the 0.2.1 distribution build.
[roundup.git] / setup.py
1 #! /usr/bin/env python
3 # $Id: setup.py,v 1.5 2001-07-28 00:39:18 richard Exp $
5 from distutils.core import setup, Extension
6 from distutils.util import get_platform
8 from glob import glob
9 import os
11 templates = 'classic', 'extended'
12 packagelist = [ 'roundup', 'roundup.backends', 'roundup.templates' ]
13 installdatafiles = []
15 for t in templates:
16     packagelist.append('roundup.templates.%s'%t)
17     packagelist.append('roundup.templates.%s.detectors'%t)
18     tfiles = glob(os.path.join('roundup','templates', t, 'html', '*'))
19     tfiles = filter(os.path.isfile, tfiles)
22 setup ( name = "roundup", 
23         version = "0.2.1",
24         description = "Roundup issue tracking system.",
25         author = "Richard Jones",
26         author_email = "richard@sourceforge.net",
27         url = 'http://sourceforge.net/projects/roundup/',
28         packages = packagelist,
29     scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server']
30 )
32 #
33 # $Log: not supported by cvs2svn $
34 # Revision 1.4  2001/07/27 07:20:17  richard
35 # Makefile is now obsolete - setup does what it used to do.
36 #
37 # Revision 1.3  2001/07/27 06:56:25  richard
38 # Added scripts to the setup and added the config so the default script
39 # install dir is /usr/local/bin.
40 #
41 # Revision 1.2  2001/07/26 07:14:27  richard
42 # Made setup.py executable, added id and log.
43 #
44 #