[llvm-commits] [LNT] r154152 - in /lnt/trunk: docs/intro.rst lnt/__init__.py setup.py

Daniel Dunbar daniel at zuster.org
Thu Apr 5 17:10:59 PDT 2012


Author: ddunbar
Date: Thu Apr  5 19:10:59 2012
New Revision: 154152

URL: http://llvm.org/viewvc/llvm-project?rev=154152&view=rev
Log:
Add a long description for the package and remove an unused package_data item.
 - Also, bump the minor version.

Modified:
    lnt/trunk/docs/intro.rst
    lnt/trunk/lnt/__init__.py
    lnt/trunk/setup.py

Modified: lnt/trunk/docs/intro.rst
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/docs/intro.rst?rev=154152&r1=154151&r2=154152&view=diff
==============================================================================
--- lnt/trunk/docs/intro.rst (original)
+++ lnt/trunk/docs/intro.rst Thu Apr  5 19:10:59 2012
@@ -3,10 +3,14 @@
 Introduction
 ============
 
-LNT is designed to be a generic infastrcture for performance testing. The LNT
-software itself consists of two main parts, a web application for accessing and
-visualizing performance data, and command line utilities to allow users to
-generate and submit test results to the server.
+*LNT* is an infrastructure for performance testing. The software itself consists
+of two main parts, a web application for accessing and visualizing performance
+data, and command line utilities to allow users to generate and submit test
+results to the server.
+
+The package was originally written for use in testing LLVM compiler
+technologies, but is designed to be usable for the performance testing of any
+software.
 
 If you are an LLVM developer who is mostly interested in just using LNT to run
 the test-suite against some compiler, then you should fast forward to the

Modified: lnt/trunk/lnt/__init__.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/__init__.py?rev=154152&r1=154151&r2=154152&view=diff
==============================================================================
--- lnt/trunk/lnt/__init__.py (original)
+++ lnt/trunk/lnt/__init__.py Thu Apr  5 19:10:59 2012
@@ -1,6 +1,6 @@
 __author__ = 'Daniel Dunbar'
 __email__ = 'daniel at zuster.org'
-__versioninfo__ = (0, 4, 0)
+__versioninfo__ = (0, 4, 1)
 __version__ = '.'.join(map(str, __versioninfo__)) + 'dev'
 
 __all__ = []

Modified: lnt/trunk/setup.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/setup.py?rev=154152&r1=154151&r2=154152&view=diff
==============================================================================
--- lnt/trunk/setup.py (original)
+++ lnt/trunk/setup.py Thu Apr  5 19:10:59 2012
@@ -20,6 +20,36 @@
 
     description = "LLVM Nightly Test Infrastructure",
     keywords = 'web testing performance development llvm',
+    long_description = """\
+*LNT*
++++++
+
+About
+=====
+
+*LNT* is an infrastructure for performance testing. The software itself consists
+of two main parts, a web application for accessing and visualizing performance
+data, and command line utilities to allow users to generate and submit test
+results to the server.
+
+The package was originally written for use in testing LLVM compiler
+technologies, but is designed to be usable for the performance testing of any
+software.
+
+
+Documentation
+=============
+
+The official *LNT* documentation is available online at:
+  http://llvm.org/docs/lnt
+
+
+Source
+======
+
+The *LNT* source is available in the LLVM SVN repository:
+http://llvm.org/svn/llvm-project/lnt/trunk
+""",
 
     classifiers=[
         'Development Status :: 4 - Beta',
@@ -29,7 +59,7 @@
          'University of Illinois/NCSA Open Source License'),
         'Natural Language :: English',
         'Operating System :: OS Independent',
-        'Progamming Language :: Python',
+        'Programming Language :: Python',
         'Topic :: Software Development :: Quality Assurance',
         'Topic :: Software Development :: Testing',
         ],
@@ -41,8 +71,6 @@
                                       'static/*.js',
                                       'static/*.css',
                                       'templates/*.html'],
-
-                    'lnt.util': ['NTAuxSubmit'],
                     },
 
     packages = find_packages(),





More information about the llvm-commits mailing list