Skip to content

Commit 357ad5c

Browse files
author
Richard Jones
committed
Added scripts to the setup and added the config...
so the default script install dir is /usr/local/bin.
1 parent ab081f2 commit 357ad5c

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

setup.cfg

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# $Id: setup.cfg,v 1.1 2001-07-27 06:56:25 richard Exp $
2+
3+
[install_scripts]
4+
install_dir=/usr/local/bin
5+
6+
#
7+
# $Log: not supported by cvs2svn $
8+
#

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /usr/bin/env python
22

3-
# $Id: setup.py,v 1.2 2001-07-26 07:14:27 richard Exp $
3+
# $Id: setup.py,v 1.3 2001-07-27 06:56:25 richard Exp $
44

55
from distutils.core import setup, Extension
66
from distutils.util import get_platform
@@ -20,16 +20,20 @@
2020

2121

2222
setup ( name = "roundup",
23-
version = "0.1.4",
23+
version = "0.2.0",
2424
description = "roundup tracking system",
2525
author = "Richard Jones",
2626
url = 'http://sourceforge.net/projects/roundup/',
2727
packages = packagelist,
28+
scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server']
2829
)
2930

3031
# now install the bin programs, and the cgi-bin programs
3132
# not sure how, yet.
3233

3334
#
3435
# $Log: not supported by cvs2svn $
36+
# Revision 1.2 2001/07/26 07:14:27 richard
37+
# Made setup.py executable, added id and log.
38+
#
3539
#

0 commit comments

Comments
 (0)