Mercurial > p > roundup > code
comparison setup.py @ 1643:41dbd406a79c 0.6.0a1
*** empty log message ***
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 09 May 2003 05:28:42 +0000 |
| parents | d0b29215aa44 |
| children | 284c26c1ef19 |
comparison
equal
deleted
inserted
replaced
| 1642:c17af5ce825e | 1643:41dbd406a79c |
|---|---|
| 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.51 2003-05-09 05:04:33 richard Exp $ | 19 # $Id: setup.py,v 1.52 2003-05-09 05:28:42 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 from roundup import __version__ | 178 from roundup import __version__ |
| 179 setup( | 179 setup( |
| 180 name = "roundup", | 180 name = "roundup", |
| 181 version = __version__, | 181 version = __version__, |
| 182 description = "Roundup issue tracking system.", | 182 description = "Roundup issue tracking system.", |
| 183 long_description = | |
| 184 '''Roundup is a simple-to-use and -install issue-tracking system with | |
| 185 command-line, web and e-mail interfaces. It is based on the winning design | |
| 186 from Ka-Ping Yee in the Software Carpentry "Track" design competition. | |
| 187 | |
| 188 This release has all the bugfixes from the latest 0.5 maintnenance release | |
| 189 plus lots of new goodies including: | |
| 190 | |
| 191 - new instant-gratification Demo Mode ("python demo.py" :) | |
| 192 - added mysql backend (see doc/mysql.txt for details) | |
| 193 - web interface cleanups including nicer history display, nicer index | |
| 194 navigation and nicer popup list windows | |
| 195 - searching of date ranges | |
| 196 - better international support, including utf-8 email handling and ability | |
| 197 to display localized dates in web interface. | |
| 198 - more documentation including revamped design document, unix manual pages | |
| 199 and some FAQ entries | |
| 200 - significantly more powerful form handling allowing editing of multiple | |
| 201 items | |
| 202 and creation of multiple items | |
| 203 - tracker templates can contain subdirectories and static files (e.g. | |
| 204 images) | |
| 205 and we may now distribute templates separately from Roundup. Template | |
| 206 HTML files now have a .html extension too. | |
| 207 - user registration is now a two-step process, with confirmation from the email | |
| 208 address supplied in the registration form, and we also have a password reset | |
| 209 feature for forgotten password / login | |
| 210 - Windows Service mode for roundup-server when daemonification is attempted | |
| 211 on Windows. | |
| 212 - fixed issues with dumb email or web clients | |
| 213 - lots more little tweaks and back-end work... | |
| 214 - email system handles more SMTP and POP features (TLS, APOP, ...) | |
| 215 ''', | |
| 183 author = "Richard Jones", | 216 author = "Richard Jones", |
| 184 author_email = "richard@users.sourceforge.net", | 217 author_email = "richard@users.sourceforge.net", |
| 185 url = 'http://sourceforge.net/projects/roundup/', | 218 url = 'http://sourceforge.net/projects/roundup/', |
| 186 download_url = 'http://sourceforge.net/project/showfiles.php?group_id=31577', | 219 download_url = 'http://sourceforge.net/project/showfiles.php?group_id=31577', |
| 187 packages = packagelist, | 220 packages = packagelist, |
