__init__.py 496 B

1234567891011121314151617181920212223
  1. #!/usr/bin/env python
  2. # ex:ts=4:sw=4:sts=4:et
  3. # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
  4. """
  5. BitBake Parsers
  6. File parsers for the BitBake build tools.
  7. """
  8. # Copyright (C) 2003, 2004 Chris Larson
  9. # Copyright (C) 2003, 2004 Phil Blundell
  10. #
  11. # SPDX-License-Identifier: GPL-2.0-only
  12. #
  13. # Based on functions from the base bb module, Copyright 2003 Holger Schurig
  14. #
  15. from __future__ import absolute_import
  16. from . import ConfHandler
  17. from . import BBHandler
  18. __version__ = '1.0'