summaryrefslogtreecommitdiff
path: root/packaging/pep517_backend/hooks.py
blob: b834338a6dc2517192fc18916196d6050c824378 (plain)
1
2
3
4
5
6
7
8
9
# -*- coding: utf-8 -*-

"""PEP 517 build backend for optionally pre-building docs before setuptools."""

from setuptools.build_meta import *  # Re-exporting PEP 517 hooks  # pylint: disable=unused-wildcard-import,wildcard-import

from ._backend import (  # noqa: WPS436  # Re-exporting PEP 517 hooks
    build_sdist, get_requires_for_build_sdist,
)