Source code for skbuild.command.bdist
"""This module defines custom implementation of ``bdist`` setuptools command."""
from __future__ import annotations
import setuptools # noqa: F401
from distutils.command.bdist import bdist as _bdist
from . import set_build_base_mixin
[docs]
class bdist(set_build_base_mixin, _bdist):
"""Custom implementation of ``bdist`` setuptools command."""