4 from setuptools import setup, find_packages
6 # setuptools expects to be invoked from within the directory of setup.py, but it
8 # python path/to/setup.py install
9 # to work (for scripts, etc.)
10 os.chdir(os.path.dirname(os.path.abspath(__file__)))
14 version = lit.__version__,
16 author = lit.__author__,
17 author_email = lit.__email__,
18 url = 'http://llvm.org',
21 description = "A Software Testing Tool",
22 keywords = 'test C++ automatic discovery',
23 long_description = """\
30 *lit* is a portable tool for executing LLVM and Clang style test suites,
31 summarizing their results, and providing indication of failures. *lit* is
32 designed to be a lightweight testing tool with as simple a user interface as
40 * Flexible test discovery.
41 * Parallel test execution.
42 * Support for multiple test formats and test suite designs.
48 The official *lit* documentation is in the man page, available online at the LLVM
49 Command Guide: http://llvm.org/cmds/lit.html.
55 The *lit* source is available as part of LLVM, in the LLVM SVN repository:
56 http://llvm.org/svn/llvm-project/llvm/trunk/utils/lit.
60 'Development Status :: 3 - Alpha',
61 'Environment :: Console',
62 'Intended Audience :: Developers',
63 'License :: OSI Approved :: University of Illinois/NCSA Open Source License',
64 'Natural Language :: English',
65 'Operating System :: OS Independent',
66 'Programming Language :: Python',
67 'Topic :: Software Development :: Testing',
71 packages = find_packages(),