blob: e29a3b88ff80025de7a6b21b73b443f55934a3dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
"""Convenience package for nbb
How exactly to cleanly import the modules in the future is still unclear,
so we'll just keep it as is for now.
"""
import nbblib.bs as bs
import nbblib.commands as commands
import nbblib.nbbcommands as nbbcommands
import nbblib.plugins as plugins
import nbblib.package as package
import nbblib.progutils as progutils
import nbblib.vcs as vcs
from nbblib.package import PACKAGE_VERSION
__all__ = ['bs', 'commands',
'package', 'plugins',
'progutils',
'vcs',
'PACKAGE_VERSION']
|