3 # FIXME: Support distutils?
4 from setuptools import setup, find_packages
7 version = lit.__version__,
9 author = lit.__author__,
10 author_email = lit.__email__,
11 url = 'http://llvm.org',
14 description = "A Software Testing Tool",
15 keywords = 'test C++ automatic discovery',
16 long_description = """\
23 *lit* is a portable tool for executing LLVM and Clang style test suites,
24 summarizing their results, and providing indication of failures. *lit* is
25 designed to be a lightweight testing tool with as simple a user interface as
33 * Flexible test discovery.
34 * Parallel test execution.
35 * Support for multiple test formats and test suite designs.
41 The official *lit* documentation is in the man page, available online at the LLVM
42 Command Guide: http://llvm.org/cmds/lit.html.
48 The *lit* source is available as part of LLVM, in the LLVM SVN repository:
49 http://llvm.org/svn/llvm-project/llvm/trunk/utils/lit.
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',
59 'Programming Language :: Python',
60 'Topic :: Software Development :: Testing',
64 packages = find_packages(),