__init__.py 551 B

12345678910111213141516
  1. # Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
  2. #
  3. # This module is part of GitDB and is released under
  4. # the New BSD License: https://opensource.org/license/bsd-3-clause/
  5. """Initialize the object database module"""
  6. __author__ = "Sebastian Thiel"
  7. __contact__ = "byronimo@gmail.com"
  8. __homepage__ = "https://github.com/gitpython-developers/gitdb"
  9. version_info = (4, 0, 12)
  10. __version__ = '.'.join(str(i) for i in version_info)
  11. # default imports
  12. from gitdb.base import *
  13. from gitdb.db import *
  14. from gitdb.stream import *