22 lines
No EOL
512 B
Python
22 lines
No EOL
512 B
Python
"""
|
|
Deb-Mock: A low-level utility to create clean, isolated build environments for Debian packages
|
|
|
|
This tool is a direct functional replacement for Fedora's Mock, adapted specifically
|
|
for Debian-based ecosystems.
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
__author__ = "Deb-Mock Team"
|
|
__email__ = "team@deb-mock.org"
|
|
|
|
from .core import DebMock
|
|
from .config import Config
|
|
from .chroot import ChrootManager
|
|
from .sbuild import SbuildWrapper
|
|
|
|
__all__ = [
|
|
"DebMock",
|
|
"Config",
|
|
"ChrootManager",
|
|
"SbuildWrapper",
|
|
] |