comparison setup.py @ 1092:e5826025eeb7

more Log removal
author Richard Jones <richard@users.sourceforge.net>
date Tue, 10 Sep 2002 01:07:06 +0000
parents 3f20880c2a7e
children 2add60346bf7
comparison
equal deleted inserted replaced
1091:d870139aeb5c 1092:e5826025eeb7
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.37 2002-09-06 04:25:31 richard Exp $ 19 # $Id: setup.py,v 1.38 2002-09-10 01:07:05 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
188 scripts = roundup_scripts, 188 scripts = roundup_scripts,
189 189
190 data_files = installdatafiles 190 data_files = installdatafiles
191 ) 191 )
192 192
193
194 #
195 # $Log: not supported by cvs2svn $
196 # Revision 1.36 2002/08/16 04:25:01 richard
197 # cleanup: moved templatebuilder into templates.builder
198 #
199 # Revision 1.35 2002/06/17 23:14:44 richard
200 # . #569415 ] {version}
201 #
202 # Revision 1.34 2002/05/29 01:16:16 richard
203 # Sorry about this huge checkin! It's fixing a lot of related stuff in one go
204 # though.
205 #
206 # . #541941 ] changing multilink properties by mail
207 # . #526730 ] search for messages capability
208 # . #505180 ] split MailGW.handle_Message
209 # - also changed cgi client since it was duplicating the functionality
210 # . build htmlbase if tests are run using CVS checkout (removed note from
211 # installation.txt)
212 # . don't create an empty message on email issue creation if the email is empty
213 #
214 # Revision 1.33 2002/04/03 05:53:03 richard
215 # Didn't get around to committing these after the last release.
216 #
217 # Revision 1.32 2002/03/27 23:47:58 jhermann
218 # Fix for scripts running under CMD.EXE
219 #
220 # Revision 1.31 2002/03/22 18:36:00 jhermann
221 # chmod +x for scripts
222 #
223 # Revision 1.30 2002/01/29 20:07:15 jhermann
224 # Conversion to generated script stubs
225 #
226 # Revision 1.29 2002/01/23 06:05:36 richard
227 # prep work for release
228 #
229 # Revision 1.28 2002/01/11 03:24:15 richard
230 # minor changes for 0.4.0b2
231 #
232 # Revision 1.27 2002/01/05 02:09:46 richard
233 # make setup abort if tests fail
234 #
235 # Revision 1.26 2001/12/08 07:06:20 jhermann
236 # Install html template files to share/roundup/templates
237 #
238 # Revision 1.25 2001/11/21 23:42:54 richard
239 # Some version number and documentation fixes.
240 #
241 # Revision 1.24 2001/11/06 22:32:15 jhermann
242 # Install roundup.cgi to share/roundup
243 #
244 # Revision 1.23 2001/10/17 06:04:00 richard
245 # Beginnings of an interactive mode for roundup-admin
246 #
247 # Revision 1.22 2001/10/11 05:01:28 richard
248 # Prep for pre-release #2
249 #
250 # Revision 1.21 2001/10/10 04:18:38 richard
251 # Getting ready for a preview release for 0.3.0.
252 #
253 # Revision 1.20 2001/10/08 21:49:30 richard
254 # Minor pre- 0.3.0 changes
255 #
256 # Revision 1.19 2001/09/10 09:48:35 richard
257 # Started changes log for 0.2.9
258 #
259 # Revision 1.18 2001/08/30 06:01:17 richard
260 # Fixed missing import in mailgw :(
261 #
262 # Revision 1.17 2001/08/08 03:29:35 richard
263 # Next release is 0.2.6
264 #
265 # Revision 1.16 2001/08/07 00:24:42 richard
266 # stupid typo
267 #
268 # Revision 1.15 2001/08/07 00:15:51 richard
269 # Added the copyright/license notice to (nearly) all files at request of
270 # Bizar Software.
271 #
272 # Revision 1.14 2001/08/06 23:57:20 richard
273 # Am now bundling unittest with the package so that everyone can use the unit
274 # tests.
275 #
276 # Revision 1.13 2001/08/03 07:18:57 richard
277 # updated version number for 0.2.6
278 #
279 # Revision 1.12 2001/08/03 02:51:06 richard
280 # detect unit tests
281 #
282 # Revision 1.11 2001/08/03 01:54:58 richard
283 # Started stuff off for the 0.2.5 release
284 #
285 # Revision 1.10 2001/07/30 07:17:44 richard
286 # Just making sure we've got the right version in there for development.
287 #
288 # Revision 1.9 2001/07/29 23:34:26 richard
289 # Added unit tests so they're run whenever we package/install/whatever.
290 #
291 # Revision 1.8 2001/07/29 09:43:46 richard
292 # Make sure that the htmlbase is up-to-date when we build a source dist.
293 #
294 # Revision 1.7 2001/07/29 08:37:58 richard
295 # changes
296 #
297 # Revision 1.6 2001/07/29 07:01:39 richard
298 # Added vim command to all source so that we don't get no steenkin' tabs :)
299 #
300 # Revision 1.5 2001/07/28 00:39:18 richard
301 # changes for the 0.2.1 distribution build.
302 #
303 # Revision 1.4 2001/07/27 07:20:17 richard
304 # Makefile is now obsolete - setup does what it used to do.
305 #
306 # Revision 1.3 2001/07/27 06:56:25 richard
307 # Added scripts to the setup and added the config so the default script
308 # install dir is /usr/local/bin.
309 #
310 # Revision 1.2 2001/07/26 07:14:27 richard
311 # Made setup.py executable, added id and log.
312 #
313 #
314 #
315 # vim: set filetype=python ts=4 sw=4 et si 193 # vim: set filetype=python ts=4 sw=4 et si

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