blob: cdebe440dda672c9bec7e3575e0c4c97a4291f28 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#!/usr/bin/env python
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002"""
3BitBake Parsers
4
5File parsers for the BitBake build tools.
6
7"""
8
9# Copyright (C) 2003, 2004 Chris Larson
10# Copyright (C) 2003, 2004 Phil Blundell
11#
Brad Bishopc342db32019-05-15 21:57:59 -040012# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013#
14# Based on functions from the base bb module, Copyright 2003 Holger Schurig
Brad Bishopc342db32019-05-15 21:57:59 -040015#
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016
17from __future__ import absolute_import
18from . import ConfHandler
19from . import BBHandler
20
21__version__ = '1.0'