Mercurial > p > roundup > code
annotate setup.py @ 214:18134bffab37
stupid typo
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 07 Aug 2001 00:24:43 +0000 |
| parents | d45384bc6420 |
| children | 5ce5fc22ac6c |
| rev | line source |
|---|---|
|
85
fe0b33370244
Made setup.py executable, added id and log.
Richard Jones <richard@users.sourceforge.net>
parents:
78
diff
changeset
|
1 #! /usr/bin/env python |
|
213
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
2 # |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
3 # Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/) |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
4 # This module is free software, and you may redistribute it and/or modify |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
5 # under the same terms as Python, so long as this copyright message and |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
6 # disclaimer are retained in their original form. |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
7 # |
| 214 | 8 # IN NO EVENT SHALL BIZAR SOFTWARE PTY LTD BE LIABLE TO ANY PARTY FOR |
|
213
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
9 # DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
10 # OUT OF THE USE OF THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
11 # POSSIBILITY OF SUCH DAMAGE. |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
12 # |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
13 # BIZAR SOFTWARE PTY LTD SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
18 # |
| 214 | 19 # $Id: setup.py,v 1.16 2001-08-07 00:24:42 richard Exp $ |
|
85
fe0b33370244
Made setup.py executable, added id and log.
Richard Jones <richard@users.sourceforge.net>
parents:
78
diff
changeset
|
20 |
|
78
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
21 from distutils.core import setup, Extension |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
22 from distutils.util import get_platform |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
23 |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
24 from glob import glob |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
25 import os |
|
133
4377732e04bb
Make sure that the htmlbase is up-to-date when we build a source dist.
Richard Jones <richard@users.sourceforge.net>
parents:
129
diff
changeset
|
26 from roundup.templatebuilder import makeHtmlBase |
|
78
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
27 |
|
210
40d7be9708f6
Am now bundling unittest with the package so everyone can use the unit tests.
Richard Jones <richard@users.sourceforge.net>
parents:
199
diff
changeset
|
28 print 'Running unit tests...' |
|
40d7be9708f6
Am now bundling unittest with the package so everyone can use the unit tests.
Richard Jones <richard@users.sourceforge.net>
parents:
199
diff
changeset
|
29 import test |
|
40d7be9708f6
Am now bundling unittest with the package so everyone can use the unit tests.
Richard Jones <richard@users.sourceforge.net>
parents:
199
diff
changeset
|
30 test.go() |
|
135
79bc5f0a0dde
Added unit tests so they're run whenever we package/install/whatever.
Richard Jones <richard@users.sourceforge.net>
parents:
133
diff
changeset
|
31 |
|
78
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
32 templates = 'classic', 'extended' |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
33 packagelist = [ 'roundup', 'roundup.backends', 'roundup.templates' ] |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
34 installdatafiles = [] |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
35 |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
36 for t in templates: |
|
133
4377732e04bb
Make sure that the htmlbase is up-to-date when we build a source dist.
Richard Jones <richard@users.sourceforge.net>
parents:
129
diff
changeset
|
37 makeHtmlBase(os.path.join('roundup', 'templates', t)) |
|
78
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
38 packagelist.append('roundup.templates.%s'%t) |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
39 packagelist.append('roundup.templates.%s.detectors'%t) |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
40 tfiles = glob(os.path.join('roundup','templates', t, 'html', '*')) |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
41 tfiles = filter(os.path.isfile, tfiles) |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
42 |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
43 |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
44 setup ( name = "roundup", |
|
199
0345753f27cf
updated version number for 0.2.6
Richard Jones <richard@users.sourceforge.net>
parents:
197
diff
changeset
|
45 version = "0.2.6", |
| 129 | 46 description = "Roundup issue tracking system.", |
| 47 author = "Richard Jones", | |
| 48 author_email = "richard@sourceforge.net", | |
| 49 url = 'http://sourceforge.net/projects/roundup/', | |
| 50 packages = packagelist, | |
| 51 scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server'] | |
|
78
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
52 ) |
|
edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
53 |
|
85
fe0b33370244
Made setup.py executable, added id and log.
Richard Jones <richard@users.sourceforge.net>
parents:
78
diff
changeset
|
54 # |
|
fe0b33370244
Made setup.py executable, added id and log.
Richard Jones <richard@users.sourceforge.net>
parents:
78
diff
changeset
|
55 # $Log: not supported by cvs2svn $ |
| 214 | 56 # Revision 1.15 2001/08/07 00:15:51 richard |
| 57 # Added the copyright/license notice to (nearly) all files at request of | |
| 58 # Bizar Software. | |
| 59 # | |
|
213
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
60 # Revision 1.14 2001/08/06 23:57:20 richard |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
61 # Am now bundling unittest with the package so that everyone can use the unit |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
62 # tests. |
|
d45384bc6420
Added the copyright/license notice to (nearly) all files...
Richard Jones <richard@users.sourceforge.net>
parents:
210
diff
changeset
|
63 # |
|
210
40d7be9708f6
Am now bundling unittest with the package so everyone can use the unit tests.
Richard Jones <richard@users.sourceforge.net>
parents:
199
diff
changeset
|
64 # Revision 1.13 2001/08/03 07:18:57 richard |
|
40d7be9708f6
Am now bundling unittest with the package so everyone can use the unit tests.
Richard Jones <richard@users.sourceforge.net>
parents:
199
diff
changeset
|
65 # updated version number for 0.2.6 |
|
40d7be9708f6
Am now bundling unittest with the package so everyone can use the unit tests.
Richard Jones <richard@users.sourceforge.net>
parents:
199
diff
changeset
|
66 # |
|
199
0345753f27cf
updated version number for 0.2.6
Richard Jones <richard@users.sourceforge.net>
parents:
197
diff
changeset
|
67 # Revision 1.12 2001/08/03 02:51:06 richard |
|
0345753f27cf
updated version number for 0.2.6
Richard Jones <richard@users.sourceforge.net>
parents:
197
diff
changeset
|
68 # detect unit tests |
|
0345753f27cf
updated version number for 0.2.6
Richard Jones <richard@users.sourceforge.net>
parents:
197
diff
changeset
|
69 # |
|
197
c610319d11aa
detect unit tests
Richard Jones <richard@users.sourceforge.net>
parents:
194
diff
changeset
|
70 # Revision 1.11 2001/08/03 01:54:58 richard |
|
c610319d11aa
detect unit tests
Richard Jones <richard@users.sourceforge.net>
parents:
194
diff
changeset
|
71 # Started stuff off for the 0.2.5 release |
|
c610319d11aa
detect unit tests
Richard Jones <richard@users.sourceforge.net>
parents:
194
diff
changeset
|
72 # |
|
194
30c3a37b699f
Started stuff off for the 0.2.5 release
Richard Jones <richard@users.sourceforge.net>
parents:
164
diff
changeset
|
73 # Revision 1.10 2001/07/30 07:17:44 richard |
|
30c3a37b699f
Started stuff off for the 0.2.5 release
Richard Jones <richard@users.sourceforge.net>
parents:
164
diff
changeset
|
74 # Just making sure we've got the right version in there for development. |
|
30c3a37b699f
Started stuff off for the 0.2.5 release
Richard Jones <richard@users.sourceforge.net>
parents:
164
diff
changeset
|
75 # |
|
164
90073d289028
Just making sure we've got the right version in there for development.
Richard Jones <richard@users.sourceforge.net>
parents:
135
diff
changeset
|
76 # Revision 1.9 2001/07/29 23:34:26 richard |
|
90073d289028
Just making sure we've got the right version in there for development.
Richard Jones <richard@users.sourceforge.net>
parents:
135
diff
changeset
|
77 # Added unit tests so they're run whenever we package/install/whatever. |
|
90073d289028
Just making sure we've got the right version in there for development.
Richard Jones <richard@users.sourceforge.net>
parents:
135
diff
changeset
|
78 # |
|
135
79bc5f0a0dde
Added unit tests so they're run whenever we package/install/whatever.
Richard Jones <richard@users.sourceforge.net>
parents:
133
diff
changeset
|
79 # Revision 1.8 2001/07/29 09:43:46 richard |
|
79bc5f0a0dde
Added unit tests so they're run whenever we package/install/whatever.
Richard Jones <richard@users.sourceforge.net>
parents:
133
diff
changeset
|
80 # Make sure that the htmlbase is up-to-date when we build a source dist. |
|
79bc5f0a0dde
Added unit tests so they're run whenever we package/install/whatever.
Richard Jones <richard@users.sourceforge.net>
parents:
133
diff
changeset
|
81 # |
|
133
4377732e04bb
Make sure that the htmlbase is up-to-date when we build a source dist.
Richard Jones <richard@users.sourceforge.net>
parents:
129
diff
changeset
|
82 # Revision 1.7 2001/07/29 08:37:58 richard |
|
4377732e04bb
Make sure that the htmlbase is up-to-date when we build a source dist.
Richard Jones <richard@users.sourceforge.net>
parents:
129
diff
changeset
|
83 # changes |
|
4377732e04bb
Make sure that the htmlbase is up-to-date when we build a source dist.
Richard Jones <richard@users.sourceforge.net>
parents:
129
diff
changeset
|
84 # |
| 129 | 85 # Revision 1.6 2001/07/29 07:01:39 richard |
| 86 # Added vim command to all source so that we don't get no steenkin' tabs :) | |
| 87 # | |
|
127
0791d13baea7
Added vim command to all source so that we don't get no steenkin' tabs :)
Richard Jones <richard@users.sourceforge.net>
parents:
105
diff
changeset
|
88 # Revision 1.5 2001/07/28 00:39:18 richard |
|
0791d13baea7
Added vim command to all source so that we don't get no steenkin' tabs :)
Richard Jones <richard@users.sourceforge.net>
parents:
105
diff
changeset
|
89 # changes for the 0.2.1 distribution build. |
|
0791d13baea7
Added vim command to all source so that we don't get no steenkin' tabs :)
Richard Jones <richard@users.sourceforge.net>
parents:
105
diff
changeset
|
90 # |
|
105
3bed67f2394c
changes for the 0.2.1 distribution build.
Richard Jones <richard@users.sourceforge.net>
parents:
97
diff
changeset
|
91 # Revision 1.4 2001/07/27 07:20:17 richard |
|
3bed67f2394c
changes for the 0.2.1 distribution build.
Richard Jones <richard@users.sourceforge.net>
parents:
97
diff
changeset
|
92 # Makefile is now obsolete - setup does what it used to do. |
|
3bed67f2394c
changes for the 0.2.1 distribution build.
Richard Jones <richard@users.sourceforge.net>
parents:
97
diff
changeset
|
93 # |
|
97
ea5d6029a4bd
Makefile is now obsolete - setup does what it used to do.
Richard Jones <richard@users.sourceforge.net>
parents:
93
diff
changeset
|
94 # Revision 1.3 2001/07/27 06:56:25 richard |
|
ea5d6029a4bd
Makefile is now obsolete - setup does what it used to do.
Richard Jones <richard@users.sourceforge.net>
parents:
93
diff
changeset
|
95 # Added scripts to the setup and added the config so the default script |
|
ea5d6029a4bd
Makefile is now obsolete - setup does what it used to do.
Richard Jones <richard@users.sourceforge.net>
parents:
93
diff
changeset
|
96 # install dir is /usr/local/bin. |
|
ea5d6029a4bd
Makefile is now obsolete - setup does what it used to do.
Richard Jones <richard@users.sourceforge.net>
parents:
93
diff
changeset
|
97 # |
|
93
b68df6a509c9
Added scripts to the setup and added the config...
Richard Jones <richard@users.sourceforge.net>
parents:
85
diff
changeset
|
98 # Revision 1.2 2001/07/26 07:14:27 richard |
|
b68df6a509c9
Added scripts to the setup and added the config...
Richard Jones <richard@users.sourceforge.net>
parents:
85
diff
changeset
|
99 # Made setup.py executable, added id and log. |
|
85
fe0b33370244
Made setup.py executable, added id and log.
Richard Jones <richard@users.sourceforge.net>
parents:
78
diff
changeset
|
100 # |
|
93
b68df6a509c9
Added scripts to the setup and added the config...
Richard Jones <richard@users.sourceforge.net>
parents:
85
diff
changeset
|
101 # |
|
127
0791d13baea7
Added vim command to all source so that we don't get no steenkin' tabs :)
Richard Jones <richard@users.sourceforge.net>
parents:
105
diff
changeset
|
102 # |
|
0791d13baea7
Added vim command to all source so that we don't get no steenkin' tabs :)
Richard Jones <richard@users.sourceforge.net>
parents:
105
diff
changeset
|
103 # vim: set filetype=python ts=4 sw=4 et si |
