Skip to content

Commit 9e58402

Browse files
author
Richard Jones
committed
*** empty log message ***
1 parent de1deb6 commit 9e58402

File tree

2 files changed

+36
-9
lines changed

2 files changed

+36
-9
lines changed

BUILD.txt

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ This means that we only need to ever build source releases. This is done by
88
running:
99

1010
1. Edit roundup/__init__.py and doc/announcement.txt to reflect the new
11-
version and appropriate announcements.
11+
version and appropriate announcements. Add truncated announcement to
12+
setup.py description field.
1213
2. python setup.py clean --all
1314
3. Edit setup.py to ensure that all information therein (version, contact
1415
information etc) is correct.
@@ -27,13 +28,6 @@ So, those commands in a nice, cut'n'pasteable form::
2728
python setup.py sdist --quiet
2829
python2.3 setup.py register
2930

30-
or, for the sad RedHat users::
31-
32-
python2 setup.py clean --all
33-
python2 setup.py sdist --manifest-only
34-
python2 setup.py sdist --quiet
35-
python2.3 setup.py register
36-
3731

3832
Distributing Releases
3933
=====================

setup.py

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
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 $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -180,6 +180,39 @@ def main():
180180
name = "roundup",
181181
version = __version__,
182182
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+
''',
183216
author = "Richard Jones",
184217
author_email = "[email protected]",
185218
url = 'http://sourceforge.net/projects/roundup/',

0 commit comments

Comments
 (0)