| 1 | #===- __init__.py - Clang Python Bindings --------------------*- python -*--===# |
| 2 | # |
| 3 | # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | # See https://llvm.org/LICENSE.txt for license information. |
| 5 | # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | # |
| 7 | #===------------------------------------------------------------------------===# |
| 8 | |
| 9 | r""" |
| 10 | Clang Library Bindings |
| 11 | ====================== |
| 12 | |
| 13 | This package provides access to the Clang compiler and libraries. |
| 14 | |
| 15 | The available modules are: |
| 16 | |
| 17 | cindex |
| 18 | |
| 19 | Bindings for the Clang indexing library. |
| 20 | """ |
| 21 | |
| 22 | __all__ = ['cindex'] |
| 23 | |
| 24 | |