Code

Fix charset of first text-part of outgoing multipart messages, thanks
[roundup.git] / setup.py
index 8dd11641e6965520be12fec0591dc2b6c6664f38..5908f9730961545f63d7e5062c71db6a44db3211 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -40,7 +40,7 @@ def include(d, e):
     'd' -- A directory
 
     'e' -- A glob pattern"""
-    
+
     return (d, [f for f in glob('%s/%s'%(d, e)) if os.path.isfile(f)])
 
 def scriptname(path):
@@ -93,15 +93,15 @@ def main():
 
     # perform the setup action
     from roundup import __version__
-    
+
     setup(name='roundup',
           version=__version__,
           author="Richard Jones",
           author_email="richard@users.sourceforge.net",
-          description='Issue-tracking System.',
-          long_description=
-          """Roundup is a simple-to-use and -install issue-tracking system
-with command-line, web and e-mail interfaces. Highly customisable.""",
+          description="A simple-to-use and -install issue-tracking system"
+            " with command-line, web and e-mail interfaces. Highly"
+            " customisable.",
+          long_description=open('doc/announcement.txt').read(),
           url='http://www.roundup-tracker.org',
           download_url='http://pypi.python.org/pypi/roundup',
           classifiers=['Development Status :: 5 - Production/Stable',