comparison setup.py @ 1873:f63aa57386b0

Backend improvements. - using Zope3's test runner now, allowing GC checks, nicer controls and coverage analysis - all RDMBS backends now have indexes on several columns - added testing of schema mutation, fixed rdbms backends handling of a couple of cases - !BETA! added postgresql backend, needs work !BETA!
author Richard Jones <richard@users.sourceforge.net>
date Sat, 25 Oct 2003 22:53:26 +0000
parents 0f2678eeeac6
children 0798ce090450
comparison
equal deleted inserted replaced
1872:c085b4f4f0c0 1873:f63aa57386b0
14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
18 # 18 #
19 # $Id: setup.py,v 1.56 2003-08-18 06:31:59 richard Exp $ 19 # $Id: setup.py,v 1.57 2003-10-25 22:53:26 richard Exp $
20 20
21 from distutils.core import setup, Extension 21 from distutils.core import setup, Extension
22 from distutils.util import get_platform 22 from distutils.util import get_platform
23 from distutils.command.build_scripts import build_scripts 23 from distutils.command.build_scripts import build_scripts
24 24
178 # perform the setup action 178 # perform the setup action
179 from roundup import __version__ 179 from roundup import __version__
180 setup( 180 setup(
181 name = "roundup", 181 name = "roundup",
182 version = __version__, 182 version = __version__,
183 description = "Roundup issue tracking system.", 183 description = "A simple-to-use and -install issue-tracking system"
184 " with command-line, web and e-mail interfaces. Highly"
185 " customisable.",
184 long_description = 186 long_description =
185 '''Roundup is a simple-to-use and -install issue-tracking system with 187 '''Roundup is a simple-to-use and -install issue-tracking system with
186 command-line, web and e-mail interfaces. It is based on the winning design 188 command-line, web and e-mail interfaces. It is based on the winning design
187 from Ka-Ping Yee in the Software Carpentry "Track" design competition. 189 from Ka-Ping Yee in the Software Carpentry "Track" design competition.
188 190

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