blob: a94e6ea833e96ed482263446961c6b5949152c61 [file] [log] [blame]
Daniel Dunbar9ac75ca2009-12-26 22:58:39 +00001import lit
2
3# FIXME: Support distutils?
4from setuptools import setup, find_packages
5setup(
Daniel Dunbarbd26ba02010-09-18 02:28:12 +00006 name = "lit",
Daniel Dunbar9ac75ca2009-12-26 22:58:39 +00007 version = lit.__version__,
8
9 author = lit.__author__,
10 author_email = lit.__email__,
11 url = 'http://llvm.org',
12 license = 'BSD',
13
14 description = "A Software Testing Tool",
15 keywords = 'test C++ automatic discovery',
16 long_description = """\
Daniel Dunbarbd26ba02010-09-18 02:28:12 +000017*lit*
18+++++
Daniel Dunbar9ac75ca2009-12-26 22:58:39 +000019
20About
21=====
22
Daniel Dunbarbd26ba02010-09-18 02:28:12 +000023*lit* is a portable tool for executing LLVM and Clang style test suites,
24summarizing their results, and providing indication of failures. *lit* is
25designed to be a lightweight testing tool with as simple a user interface as
26possible.
Daniel Dunbar9ac75ca2009-12-26 22:58:39 +000027
28
29Features
30========
31
32 * Portable!
33 * Flexible test discovery.
34 * Parallel test execution.
35 * Support for multiple test formats and test suite designs.
36
37
38Documentation
39=============
40
Chris Lattner7a2bdde2011-04-15 05:18:47 +000041The official *lit* documentation is in the man page, available online at the LLVM
Daniel Dunbarbd26ba02010-09-18 02:28:12 +000042Command Guide: http://llvm.org/cmds/lit.html.
Daniel Dunbar9ac75ca2009-12-26 22:58:39 +000043
44
45Source
46======
47
Daniel Dunbarbd26ba02010-09-18 02:28:12 +000048The *lit* source is available as part of LLVM, in the LLVM SVN repository:
49http://llvm.org/svn/llvm-project/llvm/trunk/utils/lit.
Daniel Dunbar9ac75ca2009-12-26 22:58:39 +000050""",
51
52 classifiers=[
53 'Development Status :: 3 - Alpha',
54 'Environment :: Console',
55 'Intended Audience :: Developers',
56 'License :: OSI Approved :: University of Illinois/NCSA Open Source License',
57 'Natural Language :: English',
58 'Operating System :: OS Independent',
Daniel Dunbarbd26ba02010-09-18 02:28:12 +000059 'Programming Language :: Python',
Daniel Dunbar9ac75ca2009-12-26 22:58:39 +000060 'Topic :: Software Development :: Testing',
61 ],
62
63 zip_safe = False,
64 packages = find_packages(),
65 entry_points = {
66 'console_scripts': [
67 'lit = lit:main',
68 ],
69 }
70)