/opt/imunify360/venv/lib/python3.11/site-packages/setuptools
import platform def windows_only(func): if platform.system() != 'Windows': return lambda *args, **kwargs: None return func @windows_only def hide_file(path): """ Set the hidden attribute on a file or directory. From https://stackoverflow.com/questions/19622133/ `path` must be text. """ import ctypes __import__('ctypes.wintypes') SetFileAttributes = ctypes.windll.kernel32.SetFileAttributesW SetFileAttributes.argtypes = ctypes.wintypes.LPWSTR, ctypes.wintypes.DWORD SetFileAttributes.restype = ctypes.wintypes.BOOL FILE_ATTRIBUTE_HIDDEN = 0x02 ret = SetFileAttributes(path, FILE_ATTRIBUTE_HIDDEN) if not ret: raise ctypes.WinError()
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
_core_metadata.py
Edit
_distutils
Edit
_entry_points.py
Edit
_imp.py
Edit
_importlib.py
Edit
_itertools.py
Edit
_normalization.py
Edit
_path.py
Edit
_reqs.py
Edit
_vendor
Edit
archive_util.py
Edit
build_meta.py
Edit
cli-32.exe
Edit
cli-64.exe
Edit
cli-arm64.exe
Edit
cli.exe
Edit
command
Edit
config
Edit
dep_util.py
Edit
depends.py
Edit
discovery.py
Edit
dist.py
Edit
errors.py
Edit
extension.py
Edit
extern
Edit
glob.py
Edit
gui-32.exe
Edit
gui-64.exe
Edit
gui-arm64.exe
Edit
gui.exe
Edit
installer.py
Edit
launch.py
Edit
logging.py
Edit
modified.py
Edit
monkey.py
Edit
msvc.py
Edit
namespaces.py
Edit
package_index.py
Edit
py312compat.py
Edit
sandbox.py
Edit
script (dev).tmpl
Edit
script.tmpl
Edit
unicode_utils.py
Edit
version.py
Edit
warnings.py
Edit
wheel.py
Edit
windows_support.py
Edit