Mercurial > p > roundup > code
comparison setup.py @ 281:d38ca22f7a2f 0.3.0-pre1
Getting ready for a preview release for 0.3.0.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 10 Oct 2001 04:18:39 +0000 |
| parents | dcc1ed25e6bc |
| children | 4114d0af5526 |
comparison
equal
deleted
inserted
replaced
| 280:80ad2bf9cf7b | 281:d38ca22f7a2f |
|---|---|
| 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 18 # | 18 # |
| 19 # $Id: setup.py,v 1.20 2001-10-08 21:49:30 richard Exp $ | 19 # $Id: setup.py,v 1.21 2001-10-10 04:18:38 richard Exp $ |
| 20 | 20 |
| 21 from distutils.core import setup, Extension | 21 from distutils.core import setup, Extension |
| 22 from distutils.util import get_platform | 22 from distutils.util import get_platform |
| 23 | 23 |
| 24 from glob import glob | 24 from glob import glob |
| 40 tfiles = glob(os.path.join('roundup','templates', t, 'html', '*')) | 40 tfiles = glob(os.path.join('roundup','templates', t, 'html', '*')) |
| 41 tfiles = filter(os.path.isfile, tfiles) | 41 tfiles = filter(os.path.isfile, tfiles) |
| 42 | 42 |
| 43 | 43 |
| 44 setup ( name = "roundup", | 44 setup ( name = "roundup", |
| 45 version = "0.2.9", | 45 version = "0.3.0pre1", |
| 46 description = "Roundup issue tracking system.", | 46 description = "Roundup issue tracking system.", |
| 47 author = "Richard Jones", | 47 author = "Richard Jones", |
| 48 author_email = "richard@users.sourceforge.net", | 48 author_email = "richard@users.sourceforge.net", |
| 49 url = 'http://sourceforge.net/projects/roundup/', | 49 url = 'http://sourceforge.net/projects/roundup/', |
| 50 packages = packagelist, | 50 packages = packagelist, |
| 51 scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server'] | 51 scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server'] |
| 52 ) | 52 ) |
| 53 | 53 |
| 54 # | 54 # |
| 55 # $Log: not supported by cvs2svn $ | 55 # $Log: not supported by cvs2svn $ |
| 56 # Revision 1.20 2001/10/08 21:49:30 richard | |
| 57 # Minor pre- 0.3.0 changes | |
| 58 # | |
| 56 # Revision 1.19 2001/09/10 09:48:35 richard | 59 # Revision 1.19 2001/09/10 09:48:35 richard |
| 57 # Started changes log for 0.2.9 | 60 # Started changes log for 0.2.9 |
| 58 # | 61 # |
| 59 # Revision 1.18 2001/08/30 06:01:17 richard | 62 # Revision 1.18 2001/08/30 06:01:17 richard |
| 60 # Fixed missing import in mailgw :( | 63 # Fixed missing import in mailgw :( |
