Mercurial > p > roundup > code
changeset 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 | c17af5ce825e |
| children | c98d20ba4445 |
| files | BUILD.txt setup.py |
| diffstat | 2 files changed, 36 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/BUILD.txt Fri May 09 05:07:23 2003 +0000 +++ b/BUILD.txt Fri May 09 05:28:42 2003 +0000 @@ -8,7 +8,8 @@ running: 1. Edit roundup/__init__.py and doc/announcement.txt to reflect the new - version and appropriate announcements. + version and appropriate announcements. Add truncated announcement to + setup.py description field. 2. python setup.py clean --all 3. Edit setup.py to ensure that all information therein (version, contact information etc) is correct. @@ -27,13 +28,6 @@ python setup.py sdist --quiet python2.3 setup.py register -or, for the sad RedHat users:: - - python2 setup.py clean --all - python2 setup.py sdist --manifest-only - python2 setup.py sdist --quiet - python2.3 setup.py register - Distributing Releases =====================
--- a/setup.py Fri May 09 05:07:23 2003 +0000 +++ b/setup.py Fri May 09 05:28:42 2003 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: setup.py,v 1.51 2003-05-09 05:04:33 richard Exp $ +# $Id: setup.py,v 1.52 2003-05-09 05:28:42 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -180,6 +180,39 @@ name = "roundup", version = __version__, description = "Roundup issue tracking system.", + long_description = +'''Roundup is a simple-to-use and -install issue-tracking system with +command-line, web and e-mail interfaces. It is based on the winning design +from Ka-Ping Yee in the Software Carpentry "Track" design competition. + +This release has all the bugfixes from the latest 0.5 maintnenance release +plus lots of new goodies including: + +- new instant-gratification Demo Mode ("python demo.py" :) +- added mysql backend (see doc/mysql.txt for details) +- web interface cleanups including nicer history display, nicer index + navigation and nicer popup list windows +- searching of date ranges +- better international support, including utf-8 email handling and ability + to display localized dates in web interface. +- more documentation including revamped design document, unix manual pages + and some FAQ entries +- significantly more powerful form handling allowing editing of multiple + items + and creation of multiple items +- tracker templates can contain subdirectories and static files (e.g. + images) + and we may now distribute templates separately from Roundup. Template + HTML files now have a .html extension too. +- user registration is now a two-step process, with confirmation from the email + address supplied in the registration form, and we also have a password reset + feature for forgotten password / login +- Windows Service mode for roundup-server when daemonification is attempted + on Windows. +- fixed issues with dumb email or web clients +- lots more little tweaks and back-end work... +- email system handles more SMTP and POP features (TLS, APOP, ...) +''', author = "Richard Jones", author_email = "richard@users.sourceforge.net", url = 'http://sourceforge.net/projects/roundup/',
