Source code for skbuild.command.bdist
"""This module defines custom implementation of ``bdist`` setuptools command."""
try:
from setuptools.command.bdist import bdist as _bdist
except ImportError:
from distutils.command.bdist import bdist as _bdist
from . import set_build_base_mixin
from ..utils import new_style
[docs]class bdist(set_build_base_mixin, new_style(_bdist)):
"""Custom implementation of ``bdist`` setuptools command."""
pass