/opt/imunify360/venv/lib/python3.11/site-packages/setuptools/_distutils/command
NameSizeModeActions
__pycache__/-0755rm
bdist.py54080644editdlrm
bdist_dumb.py46650644editdlrm
bdist_rpm.py220130644editdlrm
build.py55840644editdlrm
build_clib.py76840644editdlrm
build_ext.py315040644editdlrm
build_py.py165370644editdlrm
build_scripts.py56050644editdlrm
check.py48720644editdlrm
clean.py25940644editdlrm
config.py130770644editdlrm
install.py301530644editdlrm
install_data.py27620644editdlrm
install_egg_info.py27880644editdlrm
install_headers.py11800644editdlrm
install_lib.py84090644editdlrm
install_scripts.py19320644editdlrm
py37compat.py6720644editdlrm
register.py118170644editdlrm
sdist.py192320644editdlrm
upload.py74910644editdlrm
_framework_compat.py16140644editdlrm
__init__.py4300644editdlrm
Edit: /opt/imunify360/venv/lib/python3.11/site-packages/setuptools/_distutils/command/install_headers.py (1180B)
"""distutils.command.install_headers Implements the Distutils 'install_headers' command, to install C/C++ header files to the Python include directory.""" from ..core import Command # XXX force is never used class install_headers(Command): description = "install C/C++ header files" user_options = [ ('install-dir=', 'd', "directory to install header files to"), ('force', 'f', "force installation (overwrite existing files)"), ] boolean_options = ['force'] def initialize_options(self): self.install_dir = None self.force = 0 self.outfiles = [] def finalize_options(self): self.set_undefined_options( 'install', ('install_headers', 'install_dir'), ('force', 'force') ) def run(self): headers = self.distribution.headers if not headers: return self.mkpath(self.install_dir) for header in headers: (out, _) = self.copy_file(header, self.install_dir) self.outfiles.append(out) def get_inputs(self): return self.distribution.headers or [] def get_outputs(self): return self.outfiles