mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-25 21:36:52 +08:00
Co-authored-by: openhands <openhands@all-hands.dev> Co-authored-by: sp.wack <83104063+amanape@users.noreply.github.com> Co-authored-by: Engel Nyst <enyst@users.noreply.github.com>
10 lines
453 B
Python
10 lines
453 B
Python
# This is a namespace package - extend the path to include installed packages
|
|
# (We need to do this to support dependencies openhands-sdk, openhands-tools and openhands-agent-server
|
|
# which all have a top level `openhands`` package.)
|
|
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
|
|
|
# Import version information for backward compatibility
|
|
from openhands.version import __version__, get_version
|
|
|
|
__all__ = ['__version__', 'get_version']
|