Code

Added vim command to all source so that we don't get no steenkin' tabs :)
[roundup.git] / setup.py
1 #! /usr/bin/env python
2 # $Id: setup.py,v 1.6 2001-07-29 07:01:39 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.1",
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.5  2001/07/28 00:39:18  richard
34 # changes for the 0.2.1 distribution build.
35 #
36 # Revision 1.4  2001/07/27 07:20:17  richard
37 # Makefile is now obsolete - setup does what it used to do.
38 #
39 # Revision 1.3  2001/07/27 06:56:25  richard
40 # Added scripts to the setup and added the config so the default script
41 # install dir is /usr/local/bin.
42 #
43 # Revision 1.2  2001/07/26 07:14:27  richard
44 # Made setup.py executable, added id and log.
45 #
46 #
47 #
48 # vim: set filetype=python ts=4 sw=4 et si