Code

much nicer error messages when there's a templating error
[roundup.git] / setup.py
index 7c64ffe210a57f2475b7fa46387f3a61cede159a..b146d8289e938ac41154d4410288a661d53edfb6 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: setup.py,v 1.34 2002-05-29 01:16:16 richard Exp $
+# $Id: setup.py,v 1.37 2002-09-06 04:25:31 richard Exp $
 
 from distutils.core import setup, Extension
 from distutils.util import get_platform
@@ -25,7 +25,7 @@ from distutils.command.build_scripts import build_scripts
 import sys, os, string
 from glob import glob
 
-from roundup.templatebuilder import makeHtmlBase
+from roundup.templates.builder import makeHtmlBase
 
 
 #############################################################################
@@ -140,6 +140,10 @@ if __name__ == '__main__':
         glob(os.path.join('roundup', 'templates', '*'))))
     packagelist = [
         'roundup',
+        'roundup.cgi',
+        'roundup.cgi.PageTemplates',
+        'roundup.cgi.TAL',
+        'roundup.cgi.ZTUtils',
         'roundup.backends',
         'roundup.scripts',
         'roundup.templates'
@@ -167,9 +171,10 @@ if __name__ == '__main__':
         )
 
     # perform the setup action
+    from roundup import __version__
     setup(
         name = "roundup", 
-        version = "0.4.1",
+        version = __version__,
         description = "Roundup issue tracking system.",
         author = "Richard Jones",
         author_email = "richard@users.sourceforge.net",
@@ -188,6 +193,24 @@ if __name__ == '__main__':
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.36  2002/08/16 04:25:01  richard
+# cleanup: moved templatebuilder into templates.builder
+#
+# Revision 1.35  2002/06/17 23:14:44  richard
+# . #569415 ] {version}
+#
+# Revision 1.34  2002/05/29 01:16:16  richard
+# Sorry about this huge checkin! It's fixing a lot of related stuff in one go
+# though.
+#
+# . #541941 ] changing multilink properties by mail
+# . #526730 ] search for messages capability
+# . #505180 ] split MailGW.handle_Message
+#   - also changed cgi client since it was duplicating the functionality
+# . build htmlbase if tests are run using CVS checkout (removed note from
+#   installation.txt)
+# . don't create an empty message on email issue creation if the email is empty
+#
 # Revision 1.33  2002/04/03 05:53:03  richard
 # Didn't get around to committing these after the last release.
 #