summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ab80eee)
raw | patch | inline | side by side (parent: ab80eee)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 9 May 2003 05:28:42 +0000 (05:28 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 9 May 2003 05:28:42 +0000 (05:28 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1709 57a73879-2fb5-44c3-a270-3262357dd7e2
BUILD.txt | patch | blob | history | |
setup.py | patch | blob | history |
diff --git a/BUILD.txt b/BUILD.txt
index 2997d1bc6f1d1abd7a806b06bec9fc845e921add..534d6031396af84023d6d8448e13d354f9117cc9 100644 (file)
--- a/BUILD.txt
+++ b/BUILD.txt
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.
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
=====================
diff --git a/setup.py b/setup.py
index 9ebfc28088b48af096722ec6958526d9716c342a..fc98a4e4377ada38343ab82defdceb44186c30c8 100644 (file)
--- a/setup.py
+++ b/setup.py
# 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
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/',