summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8e64d92)
raw | patch | inline | side by side (parent: 8e64d92)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 27 Jul 2001 06:56:25 +0000 (06:56 +0000) | ||
committer | richard <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
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@98 57a73879-2fb5-44c3-a270-3262357dd7e2
setup.cfg | [new file with mode: 0644] | patch | blob |
setup.py | patch | blob | history |
diff --git a/setup.cfg b/setup.cfg
--- /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 5ecfdcddb18a56b0ae6748be471c4087a1d78fb8..9af5f9544be934b8df3200beef423b735f059592 100644 (file)
--- a/setup.py
+++ b/setup.py
#! /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
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
#
# $Log: not supported by cvs2svn $
+# Revision 1.2 2001/07/26 07:14:27 richard
+# Made setup.py executable, added id and log.
+#
#