Code

regenerated on Wed Jul 25 14:20:54 EST 2001
[roundup.git] / setup.py
1 from distutils.core import setup, Extension
2 from distutils.util import get_platform
4 from glob import glob
5 import os
7 templates = 'classic', 'extended'
8 packagelist = [ 'roundup', 'roundup.backends', 'roundup.templates' ]
9 installdatafiles = []
11 for t in templates:
12     packagelist.append('roundup.templates.%s'%t)
13     packagelist.append('roundup.templates.%s.detectors'%t)
14     tfiles = glob(os.path.join('roundup','templates', t, 'html', '*'))
15     tfiles = filter(os.path.isfile, tfiles)
18 setup ( name = "roundup", 
19         version = "0.1.4",
20         description = "roundup tracking system",
21         author = "Richard Jones",
22         url = 'http://sourceforge.net/projects/roundup/',
23         packages = packagelist,
24 )
26 # now install the bin programs, and the cgi-bin programs
27 # not sure how, yet.