Code

Fix documentation for roundup-server about the 'host' parameter as
[roundup.git] / setup.py
index 317d5dab9876061261b97ae4446ac861bd2e5339..0d94693caff75ace4e1f8cd708fd178590864cb6 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):
@@ -89,19 +89,19 @@ def main():
                            [os.path.join("build", _mo_file)]))
 
     # add docs
-    data_files.append(include(os.path.join('share/doc/roundup/html'), '*'))
+    data_files.append(include('share/doc/roundup/html', '*'))
 
     # 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().decode('utf8'),
           url='http://www.roundup-tracker.org',
           download_url='http://pypi.python.org/pypi/roundup',
           classifiers=['Development Status :: 5 - Production/Stable',