Mercurial > p > roundup > code
comparison setup.py @ 93:b68df6a509c9
Added scripts to the setup and added the config...
so the default script install dir is /usr/local/bin.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 27 Jul 2001 06:56:25 +0000 |
| parents | fe0b33370244 |
| children | ea5d6029a4bd |
comparison
equal
deleted
inserted
replaced
| 92:fa44da8d9df2 | 93:b68df6a509c9 |
|---|---|
| 1 #! /usr/bin/env python | 1 #! /usr/bin/env python |
| 2 | 2 |
| 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 $ |
| 4 | 4 |
| 5 from distutils.core import setup, Extension | 5 from distutils.core import setup, Extension |
| 6 from distutils.util import get_platform | 6 from distutils.util import get_platform |
| 7 | 7 |
| 8 from glob import glob | 8 from glob import glob |
| 18 tfiles = glob(os.path.join('roundup','templates', t, 'html', '*')) | 18 tfiles = glob(os.path.join('roundup','templates', t, 'html', '*')) |
| 19 tfiles = filter(os.path.isfile, tfiles) | 19 tfiles = filter(os.path.isfile, tfiles) |
| 20 | 20 |
| 21 | 21 |
| 22 setup ( name = "roundup", | 22 setup ( name = "roundup", |
| 23 version = "0.1.4", | 23 version = "0.2.0", |
| 24 description = "roundup tracking system", | 24 description = "roundup tracking system", |
| 25 author = "Richard Jones", | 25 author = "Richard Jones", |
| 26 url = 'http://sourceforge.net/projects/roundup/', | 26 url = 'http://sourceforge.net/projects/roundup/', |
| 27 packages = packagelist, | 27 packages = packagelist, |
| 28 scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server'] | |
| 28 ) | 29 ) |
| 29 | 30 |
| 30 # now install the bin programs, and the cgi-bin programs | 31 # now install the bin programs, and the cgi-bin programs |
| 31 # not sure how, yet. | 32 # not sure how, yet. |
| 32 | 33 |
| 33 # | 34 # |
| 34 # $Log: not supported by cvs2svn $ | 35 # $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. | |
| 35 # | 38 # |
| 39 # |
