Code

9af5f9544be934b8df3200beef423b735f059592
[roundup.git] / setup.py
1 #! /usr/bin/env python
3 # $Id: setup.py,v 1.3 2001-07-27 06:56:25 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.0",
24         description = "roundup tracking system",
25         author = "Richard Jones",
26         url = 'http://sourceforge.net/projects/roundup/',
27         packages = packagelist,
28     scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server']
29 )
31 # now install the bin programs, and the cgi-bin programs
32 # not sure how, yet.
34 #
35 # $Log: not supported by cvs2svn $
36 # Revision 1.2  2001/07/26 07:14:27  richard
37 # Made setup.py executable, added id and log.
38 #
39 #