Code

Fixed some problems with installation.
[roundup.git] / setup.py
index 7c5d3d68068d715c832ffd7b5fc3bf6b40ce12b6..3725ae8f491de36033e2ae8f51974f54edd22e25 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,7 @@
+#! /usr/bin/env python
+
+# $Id: setup.py,v 1.4 2001-07-27 07:20:17 richard Exp $
+
 from distutils.core import setup, Extension
 from distutils.util import get_platform
 
@@ -16,12 +20,25 @@ for t in templates:
 
 
 setup ( name = "roundup", 
-       version = "0.1.4",
+       version = "0.2.0",
        description = "roundup tracking system",
        author = "Richard Jones",
+       author_email = "richard@sourceforge.net",
        url = 'http://sourceforge.net/projects/roundup/',
        packages = packagelist,
+    scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server']
 )
 
 # now install the bin programs, and the cgi-bin programs
 # not sure how, yet.
+
+#
+# $Log: not supported by cvs2svn $
+# Revision 1.3  2001/07/27 06:56:25  richard
+# Added scripts to the setup and added the config so the default script
+# install dir is /usr/local/bin.
+#
+# Revision 1.2  2001/07/26 07:14:27  richard
+# Made setup.py executable, added id and log.
+#
+#