Code

Added scripts to the setup and added the config so the default script
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 27 Jul 2001 06:56:25 +0000 (06:56 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 27 Jul 2001 06:56:25 +0000 (06:56 +0000)
install dir is /usr/local/bin.

git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@98 57a73879-2fb5-44c3-a270-3262357dd7e2

setup.cfg [new file with mode: 0644]
setup.py

diff --git a/setup.cfg b/setup.cfg
new file mode 100644 (file)
index 0000000..9c3504e
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,8 @@
+# $Id: setup.cfg,v 1.1 2001-07-27 06:56:25 richard Exp $ 
+
+[install_scripts]
+install_dir=/usr/local/bin
+
+#
+# $Log: not supported by cvs2svn $
+#
index 5ecfdcddb18a56b0ae6748be471c4087a1d78fb8..9af5f9544be934b8df3200beef423b735f059592 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 #! /usr/bin/env python
 
-# $Id: setup.py,v 1.2 2001-07-26 07:14:27 richard Exp $
+# $Id: setup.py,v 1.3 2001-07-27 06:56:25 richard Exp $
 
 from distutils.core import setup, Extension
 from distutils.util import get_platform
@@ -20,11 +20,12 @@ for t in templates:
 
 
 setup ( name = "roundup", 
-       version = "0.1.4",
+       version = "0.2.0",
        description = "roundup tracking system",
        author = "Richard Jones",
        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
@@ -32,4 +33,7 @@ setup ( name = "roundup",
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.2  2001/07/26 07:14:27  richard
+# Made setup.py executable, added id and log.
+#
 #