1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
"""
scikit-build is an improved build system generator for CPython C extensions.
This module provides the *glue* between the setuptools Python module and CMake.
"""
from __future__ import annotations
from ._version import version as __version__
from .setuptools_wrap import setup
__author__ = "The scikit-build team"
__email__ = "scikit-build@googlegroups.com"
__all__ = ["setup", "__version__"]
# Cleaner Python 3.7 command line completion
def __dir__() -> list[str]:
return __all__
|