comparison setup.py @ 773:6e6c63a57df9

[SF#569415] {version]]
author Richard Jones <richard@users.sourceforge.net>
date Mon, 17 Jun 2002 23:14:44 +0000
parents 938edfdeac6e
children fb8a8eb55aac
comparison
equal deleted inserted replaced
772:db5daf396518 773:6e6c63a57df9
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.34 2002-05-29 01:16:16 richard Exp $ 19 # $Id: setup.py,v 1.35 2002-06-17 23:14:44 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
165 installdatafiles.append( 165 installdatafiles.append(
166 ('share/roundup/templates/%s/html' % template, tfiles) 166 ('share/roundup/templates/%s/html' % template, tfiles)
167 ) 167 )
168 168
169 # perform the setup action 169 # perform the setup action
170 from roundup import __version__
170 setup( 171 setup(
171 name = "roundup", 172 name = "roundup",
172 version = "0.4.1", 173 version = __version__,
173 description = "Roundup issue tracking system.", 174 description = "Roundup issue tracking system.",
174 author = "Richard Jones", 175 author = "Richard Jones",
175 author_email = "richard@users.sourceforge.net", 176 author_email = "richard@users.sourceforge.net",
176 url = 'http://sourceforge.net/projects/roundup/', 177 url = 'http://sourceforge.net/projects/roundup/',
177 packages = packagelist, 178 packages = packagelist,
186 ) 187 )
187 188
188 189
189 # 190 #
190 # $Log: not supported by cvs2svn $ 191 # $Log: not supported by cvs2svn $
192 # Revision 1.34 2002/05/29 01:16:16 richard
193 # Sorry about this huge checkin! It's fixing a lot of related stuff in one go
194 # though.
195 #
196 # . #541941 ] changing multilink properties by mail
197 # . #526730 ] search for messages capability
198 # . #505180 ] split MailGW.handle_Message
199 # - also changed cgi client since it was duplicating the functionality
200 # . build htmlbase if tests are run using CVS checkout (removed note from
201 # installation.txt)
202 # . don't create an empty message on email issue creation if the email is empty
203 #
191 # Revision 1.33 2002/04/03 05:53:03 richard 204 # Revision 1.33 2002/04/03 05:53:03 richard
192 # Didn't get around to committing these after the last release. 205 # Didn't get around to committing these after the last release.
193 # 206 #
194 # Revision 1.32 2002/03/27 23:47:58 jhermann 207 # Revision 1.32 2002/03/27 23:47:58 jhermann
195 # Fix for scripts running under CMD.EXE 208 # Fix for scripts running under CMD.EXE

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