comparison setup.py @ 296:e155eca83f40

Beginnings of an interactive mode for roundup-admin
author Richard Jones <richard@users.sourceforge.net>
date Wed, 17 Oct 2001 06:04:00 +0000
parents 4114d0af5526
children a9734f98d30b
comparison
equal deleted inserted replaced
295:0eb026a5257d 296:e155eca83f40
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.22 2001-10-11 05:01:28 richard Exp $ 19 # $Id: setup.py,v 1.23 2001-10-17 06:04:00 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 23
24 from glob import glob 24 from glob import glob
40 tfiles = glob(os.path.join('roundup','templates', t, 'html', '*')) 40 tfiles = glob(os.path.join('roundup','templates', t, 'html', '*'))
41 tfiles = filter(os.path.isfile, tfiles) 41 tfiles = filter(os.path.isfile, tfiles)
42 42
43 43
44 setup ( name = "roundup", 44 setup ( name = "roundup",
45 version = "0.3.0pre2", 45 version = "0.3.0pre3",
46 description = "Roundup issue tracking system.", 46 description = "Roundup issue tracking system.",
47 author = "Richard Jones", 47 author = "Richard Jones",
48 author_email = "richard@users.sourceforge.net", 48 author_email = "richard@users.sourceforge.net",
49 url = 'http://sourceforge.net/projects/roundup/', 49 url = 'http://sourceforge.net/projects/roundup/',
50 packages = packagelist, 50 packages = packagelist,
51 scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server'] 51 scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server']
52 ) 52 )
53 53
54 # 54 #
55 # $Log: not supported by cvs2svn $ 55 # $Log: not supported by cvs2svn $
56 # Revision 1.22 2001/10/11 05:01:28 richard
57 # Prep for pre-release #2
58 #
56 # Revision 1.21 2001/10/10 04:18:38 richard 59 # Revision 1.21 2001/10/10 04:18:38 richard
57 # Getting ready for a preview release for 0.3.0. 60 # Getting ready for a preview release for 0.3.0.
58 # 61 #
59 # Revision 1.20 2001/10/08 21:49:30 richard 62 # Revision 1.20 2001/10/08 21:49:30 richard
60 # Minor pre- 0.3.0 changes 63 # Minor pre- 0.3.0 changes

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