view setup.py @ 89:b6b30ba53986

Fixed some of the exceptions so they're the right type. Removed the str()-ification of node ids so we don't mask oopsy errors any more.
author Richard Jones <richard@users.sourceforge.net>
date Fri, 27 Jul 2001 06:25:35 +0000
parents fe0b33370244
children b68df6a509c9
line wrap: on
line source

#! /usr/bin/env python

# $Id: setup.py,v 1.2 2001-07-26 07:14:27 richard Exp $

from distutils.core import setup, Extension
from distutils.util import get_platform

from glob import glob
import os

templates = 'classic', 'extended'
packagelist = [ 'roundup', 'roundup.backends', 'roundup.templates' ]
installdatafiles = []

for t in templates:
    packagelist.append('roundup.templates.%s'%t)
    packagelist.append('roundup.templates.%s.detectors'%t)
    tfiles = glob(os.path.join('roundup','templates', t, 'html', '*'))
    tfiles = filter(os.path.isfile, tfiles)


setup ( name = "roundup", 
	version = "0.1.4",
	description = "roundup tracking system",
	author = "Richard Jones",
	url = 'http://sourceforge.net/projects/roundup/',
	packages = packagelist,
)

# now install the bin programs, and the cgi-bin programs
# not sure how, yet.

#
# $Log: not supported by cvs2svn $
#

Roundup Issue Tracker: http://roundup-tracker.org/