Metadata-Version: 2.4
Name: clang
Version: 21.1.4
Summary: libclang python bindings
Home-page: http://clang.llvm.org/
Download-URL: http://llvm.org/releases/download.html
Author: LLVM team
License: License :: OSI Approved :: University of Illinois/NCSA Open Source License
Keywords: llvm,clang,libclang
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: University of Illinois/NCSA Open Source License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Software Development :: Compilers
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: download-url
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: summary

//===----------------------------------------------------------------------===//
// Clang Python Bindings
//===----------------------------------------------------------------------===//

This directory implements Python bindings for Clang.

You may need to set CLANG_LIBRARY_PATH so that the Clang library can be
found. The unit tests are designed to be run with any standard test
runner. For example:
--
$ env PYTHONPATH=$(echo ~/llvm/clang/bindings/python/) \
      CLANG_LIBRARY_PATH=$(llvm-config --libdir) \
  python3 -m unittest discover -v
tests.cindex.test_index.test_create ... ok
...

OK
--
