File: bdist.py

package info (click to toggle)
scikit-build 0.18.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,792 kB
  • sloc: python: 5,258; cpp: 284; makefile: 171; f90: 12; sh: 7
file content (12 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
"""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


class bdist(set_build_base_mixin, _bdist):
    """Custom implementation of ``bdist`` setuptools command."""