Mercurial > p > roundup > code
comparison setup.py @ 1958:267e4ba89b54 maint-0.6 0.6.4
pre-release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 16 Dec 2003 20:58:26 +0000 |
| parents | 7c751e3457d6 |
| children | b939c3e78614 |
comparison
equal
deleted
inserted
replaced
| 1948:15a7aae3f34c | 1958:267e4ba89b54 |
|---|---|
| 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.55.2.4 2003-11-14 06:14:48 jlgijsbers Exp $ | 19 # $Id: setup.py,v 1.55.2.5 2003-12-16 20:58:26 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 from distutils.command.build_scripts import build_scripts | 23 from distutils.command.build_scripts import build_scripts |
| 24 | 24 |
| 178 # perform the setup action | 178 # perform the setup action |
| 179 from roundup import __version__ | 179 from roundup import __version__ |
| 180 setup( | 180 setup( |
| 181 name = "roundup", | 181 name = "roundup", |
| 182 version = __version__, | 182 version = __version__, |
| 183 description = "Roundup issue tracking system.", | 183 description = "Roundup is a simple-to-use and -install "\ |
| 184 "issue-tracking system with command-line, web and e-mail "\ | |
| 185 "interfaces.", | |
| 184 long_description = | 186 long_description = |
| 185 '''Roundup is a simple-to-use and -install issue-tracking system with | 187 '''Roundup is a simple-to-use and -install issue-tracking system with |
| 186 command-line, web and e-mail interfaces. It is based on the winning design | 188 command-line, web and e-mail interfaces. It is based on the winning design |
| 187 from Ka-Ping Yee in the Software Carpentry "Track" design competition. | 189 from Ka-Ping Yee in the Software Carpentry "Track" design competition. |
| 188 | 190 |
| 189 The 0.6.3 release fixes some bugs: | 191 The 0.6.4 release fixes some bugs: |
| 190 - added script to help migrating queries from pre-0.6 trackers | 192 - fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306) |
| 191 - fixed javascript for help window for only one checkbox case | 193 - fixed date arithmetic to limit hours-per-day to 24, not 60 |
| 192 - Date +/- Interval now works, and Date - Date also works | 194 - fixed activity displaying as future because of Date arithmetic fix in 0.6.3 |
| 193 - handle socket timeout exception (thanks Marcus Priesch) | 195 (sf bug 842027). |
| 194 - fixed retirement of items in rdbms imports (sf bug 841355) | 196 - hard-coded python2.3-ism (socket.timeout) fixed |
| 195 - fixed bug in looking up journal of newly-created items in *dbm backends | 197 - fix Windows service mode for roundup-server (sf bug 819890) |
| 196 - fixed detectors fix incorrectly fixed in bugfix release 0.6.2 | 198 - fixed #white in cgitb (thanks Henrik Levkowetz) |
| 197 - added note to upgrading doc for detectors fix in 0.6.2 | |
| 198 ''', | 199 ''', |
| 199 author = "Richard Jones", | 200 author = "Richard Jones", |
| 200 author_email = "richard@users.sourceforge.net", | 201 author_email = "richard@users.sourceforge.net", |
| 201 url = 'http://roundup.sourceforge.net/', | 202 url = 'http://roundup.sourceforge.net/', |
| 202 download_url = 'http://sourceforge.net/project/showfiles.php?group_id=31577', | 203 download_url = 'http://sourceforge.net/project/showfiles.php?group_id=31577', |
