Code

Made setup.py executable, added id and log.
[roundup.git] / setup.py
1 #! /usr/bin/env python
3 # $Id: setup.py,v 1.2 2001-07-26 07:14:27 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.1.4",
24         description = "roundup tracking system",
25         author = "Richard Jones",
26         url = 'http://sourceforge.net/projects/roundup/',
27         packages = packagelist,
28 )
30 # now install the bin programs, and the cgi-bin programs
31 # not sure how, yet.
33 #
34 # $Log: not supported by cvs2svn $
35 #