mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 22:56:15 +01:00
Daniel Mach
4848b0f42a
Fixes issues with circular module deps during tests that caused that osc.core wasn't available
20 lines
262 B
Python
20 lines
262 B
Python
__all__ = [
|
|
'babysitter',
|
|
'build',
|
|
'connection',
|
|
'commandline',
|
|
'core',
|
|
'fetch',
|
|
'grabber',
|
|
'meter',
|
|
'oscerr',
|
|
'oscssl',
|
|
]
|
|
|
|
|
|
from .util import git_version
|
|
__version__ = git_version.get_version('1.0.0~b1')
|
|
|
|
|
|
# vim: sw=4 et
|