From: richard Date: Fri, 27 Jul 2001 06:56:25 +0000 (+0000) Subject: Added scripts to the setup and added the config so the default script X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=12bcd2ab7274315ec2100b14b7e3d0b4266731d3;p=roundup.git Added scripts to the setup and added the config so the default script install dir is /usr/local/bin. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@98 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/setup.cfg b/setup.cfg new file mode 100644 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 $ +# diff --git a/setup.py b/setup.py index 5ecfdcd..9af5f95 100644 --- 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. +# #