xref: /aosp_15_r20/external/libcxx/utils/libcxx/__init__.py (revision 58b9f456b02922dfdb1fad8a988d5fd8765ecb80)
1#===----------------------------------------------------------------------===##
2#
3#                     The LLVM Compiler Infrastructure
4#
5# This file is dual licensed under the MIT and the University of Illinois Open
6# Source Licenses. See LICENSE.TXT for details.
7#
8#===----------------------------------------------------------------------===##
9
10"""libcxx python utilities"""
11
12__author__ = 'Eric Fiselier'
13__email__ = '[email protected]'
14__versioninfo__ = (0, 1, 0)
15__version__ = ' '.join(str(v) for v in __versioninfo__) + 'dev'
16
17__all__ = []
18