Mercurial > p > roundup > code
comparison setup.py @ 105:3bed67f2394c
changes for the 0.2.1 distribution build.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sat, 28 Jul 2001 00:39:18 +0000 |
| parents | ea5d6029a4bd |
| children | 0791d13baea7 |
comparison
equal
deleted
inserted
replaced
| 104:36c75fd4c6c7 | 105:3bed67f2394c |
|---|---|
| 1 #! /usr/bin/env python | 1 #! /usr/bin/env python |
| 2 | 2 |
| 3 # $Id: setup.py,v 1.4 2001-07-27 07:20:17 richard Exp $ | 3 # $Id: setup.py,v 1.5 2001-07-28 00:39:18 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.2.0", | 23 version = "0.2.1", |
| 24 description = "roundup tracking system", | 24 description = "Roundup issue tracking system.", |
| 25 author = "Richard Jones", | 25 author = "Richard Jones", |
| 26 author_email = "richard@sourceforge.net", | 26 author_email = "richard@sourceforge.net", |
| 27 url = 'http://sourceforge.net/projects/roundup/', | 27 url = 'http://sourceforge.net/projects/roundup/', |
| 28 packages = packagelist, | 28 packages = packagelist, |
| 29 scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server'] | 29 scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server'] |
| 30 ) | 30 ) |
| 31 | 31 |
| 32 # now install the bin programs, and the cgi-bin programs | |
| 33 # not sure how, yet. | |
| 34 | |
| 35 # | 32 # |
| 36 # $Log: not supported by cvs2svn $ | 33 # $Log: not supported by cvs2svn $ |
| 34 # Revision 1.4 2001/07/27 07:20:17 richard | |
| 35 # Makefile is now obsolete - setup does what it used to do. | |
| 36 # | |
| 37 # Revision 1.3 2001/07/27 06:56:25 richard | 37 # Revision 1.3 2001/07/27 06:56:25 richard |
| 38 # Added scripts to the setup and added the config so the default script | 38 # Added scripts to the setup and added the config so the default script |
| 39 # install dir is /usr/local/bin. | 39 # install dir is /usr/local/bin. |
| 40 # | 40 # |
| 41 # Revision 1.2 2001/07/26 07:14:27 richard | 41 # Revision 1.2 2001/07/26 07:14:27 richard |
