diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-09-18 02:28:12 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-09-18 02:28:12 +0000 |
commit | bd26ba0b538028e56aa10b3b037aaa8789c951f8 (patch) | |
tree | 1933fa1b47dbcfc6ae2858002b3f181560be49dd /utils/lit | |
parent | 3f32b444ed2aefd3f44550e821d30eeda24a3683 (diff) | |
download | external_llvm-bd26ba0b538028e56aa10b3b037aaa8789c951f8.zip external_llvm-bd26ba0b538028e56aa10b3b037aaa8789c951f8.tar.gz external_llvm-bd26ba0b538028e56aa10b3b037aaa8789c951f8.tar.bz2 |
lit: Tweak setup.py.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/lit')
-rw-r--r-- | utils/lit/setup.py | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/utils/lit/setup.py b/utils/lit/setup.py index e6ae3d8..738ee23 100644 --- a/utils/lit/setup.py +++ b/utils/lit/setup.py @@ -3,7 +3,7 @@ import lit # FIXME: Support distutils? from setuptools import setup, find_packages setup( - name = "Lit", + name = "lit", version = lit.__version__, author = lit.__author__, @@ -14,15 +14,16 @@ setup( description = "A Software Testing Tool", keywords = 'test C++ automatic discovery', long_description = """\ -Lit -+++ +*lit* ++++++ About ===== -Lit is a portable tool for executing LLVM and Clang style test suites, -summarizing their results, and providing indication of failures. Lit is designed -to be a lightweight testing tool with as simple a user interface as possible. +*lit* is a portable tool for executing LLVM and Clang style test suites, +summarizing their results, and providing indication of failures. *lit* is +designed to be a lightweight testing tool with as simple a user interface as +possible. Features @@ -37,15 +38,15 @@ Features Documentation ============= -The offical Lit documentation is in the man page, available online in the `LLVM -Command Guide http://llvm.org/cmds/lit.html`_. +The offical *lit* documentation is in the man page, available online at the LLVM +Command Guide: http://llvm.org/cmds/lit.html. Source ====== -The Lit source is available as part of LLVM, in the `LLVM SVN repository -<http://llvm.org/svn/llvm-project/llvm/trunk/utils/lit`_. +The *lit* source is available as part of LLVM, in the LLVM SVN repository: +http://llvm.org/svn/llvm-project/llvm/trunk/utils/lit. """, classifiers=[ @@ -55,7 +56,7 @@ The Lit source is available as part of LLVM, in the `LLVM SVN repository 'License :: OSI Approved :: University of Illinois/NCSA Open Source License', 'Natural Language :: English', 'Operating System :: OS Independent', - 'Progamming Language :: Python', + 'Programming Language :: Python', 'Topic :: Software Development :: Testing', ], |