diff options
Diffstat (limited to 'src/setup.py')
-rw-r--r-- | src/setup.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/setup.py b/src/setup.py index b49a7af..e1d4fab 100644 --- a/src/setup.py +++ b/src/setup.py @@ -361,7 +361,9 @@ class install_data(_install_data): else: self.data_files = [] -description = """Open Source next-generation build tool. +description = "Open Source next-generation build tool." + +long_description = """Open Source next-generation build tool. Improved, cross-platform substitute for the classic Make utility. In short, SCons is an easier, more reliable and faster way to build software.""" @@ -387,6 +389,7 @@ arguments = { 'name' : "scons", 'version' : Version, 'description' : description, + 'long_description' : long_description, 'author' : 'Steven Knight', 'author_email' : 'knight@baldmt.com', 'url' : "http://www.scons.org/", |