X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=setup.py;h=9d08e5d161fcccc77a150ad46ec54fbb19e61b11;hb=666d9c6b29b417a93e3bef50b3f7a4c0f10d1f0a;hp=8a0b09ba8e23daf98a74b57a4fa1bd03816f5b5b;hpb=03cc7b9053e23a64db5ff7e995b9e3e80712d87d;p=roundup.git diff --git a/setup.py b/setup.py index 8a0b09b..9d08e5d 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: setup.py,v 1.55 2003-06-22 00:28:56 richard Exp $ +# $Id: setup.py,v 1.58 2003-11-13 05:56:48 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -158,7 +158,7 @@ def main(): 'doc/roundup-mailgw.1', 'doc/roundup-server.1'])) # add the templates to the data files lists - from roundup.admin import listTemplates + from roundup.init import listTemplates templates = [t['path'] for t in listTemplates('templates').values()] for tdir in templates: # scan for data files @@ -180,15 +180,14 @@ def main(): setup( name = "roundup", version = __version__, - description = "Roundup issue tracking system.", + description = "A simple-to-use and -install issue-tracking system" + " with command-line, web and e-mail interfaces. Highly" + " customisable.", 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 a couple of bufixes mostly important to Windows users, -making it possible for them to install new trackers! - The 0.6 release has lots of new goodies including: - new instant-gratification Demo Mode ("python demo.py" :) @@ -201,20 +200,19 @@ The 0.6 release has lots of new goodies including: - 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 + 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. + 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 +- lots of speed enhancements, making the web interface much more responsive - 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, ...) +- lots more little tweaks and back-end work... ''', author = "Richard Jones", author_email = "richard@users.sourceforge.net", @@ -222,7 +220,7 @@ The 0.6 release has lots of new goodies including: download_url = 'http://sourceforge.net/project/showfiles.php?group_id=31577', packages = packagelist, classifiers = [ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Environment :: Web Environment', 'Intended Audience :: End Users/Desktop',