comparison setup.py @ 164:90073d289028

Just making sure we've got the right version in there for development.
author Richard Jones <richard@users.sourceforge.net>
date Mon, 30 Jul 2001 07:17:44 +0000
parents 79bc5f0a0dde
children 30c3a37b699f
comparison
equal deleted inserted replaced
163:8f9a65510139 164:90073d289028
1 #! /usr/bin/env python 1 #! /usr/bin/env python
2 # $Id: setup.py,v 1.9 2001-07-29 23:34:26 richard Exp $ 2 # $Id: setup.py,v 1.10 2001-07-30 07:17:44 richard Exp $
3 3
4 from distutils.core import setup, Extension 4 from distutils.core import setup, Extension
5 from distutils.util import get_platform 5 from distutils.util import get_platform
6 6
7 from glob import glob 7 from glob import glob
23 tfiles = glob(os.path.join('roundup','templates', t, 'html', '*')) 23 tfiles = glob(os.path.join('roundup','templates', t, 'html', '*'))
24 tfiles = filter(os.path.isfile, tfiles) 24 tfiles = filter(os.path.isfile, tfiles)
25 25
26 26
27 setup ( name = "roundup", 27 setup ( name = "roundup",
28 version = "0.2.3", 28 version = "0.2.4",
29 description = "Roundup issue tracking system.", 29 description = "Roundup issue tracking system.",
30 author = "Richard Jones", 30 author = "Richard Jones",
31 author_email = "richard@sourceforge.net", 31 author_email = "richard@sourceforge.net",
32 url = 'http://sourceforge.net/projects/roundup/', 32 url = 'http://sourceforge.net/projects/roundup/',
33 packages = packagelist, 33 packages = packagelist,
34 scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server'] 34 scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server']
35 ) 35 )
36 36
37 # 37 #
38 # $Log: not supported by cvs2svn $ 38 # $Log: not supported by cvs2svn $
39 # Revision 1.9 2001/07/29 23:34:26 richard
40 # Added unit tests so they're run whenever we package/install/whatever.
41 #
39 # Revision 1.8 2001/07/29 09:43:46 richard 42 # Revision 1.8 2001/07/29 09:43:46 richard
40 # Make sure that the htmlbase is up-to-date when we build a source dist. 43 # Make sure that the htmlbase is up-to-date when we build a source dist.
41 # 44 #
42 # Revision 1.7 2001/07/29 08:37:58 richard 45 # Revision 1.7 2001/07/29 08:37:58 richard
43 # changes 46 # changes

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