initial commit

This commit is contained in:
Victor Gallego Izquierdo
2024-04-12 13:37:14 +02:00
commit 01d17b8d00
1497 changed files with 277377 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
"""distutils
The main package for the Python Module Distribution Utilities. Normally
used from a setup script as
from distutils.core import setup
setup (...)
"""
import sys
import importlib
__version__ = sys.version[: sys.version.index(' ')]
try:
# Allow Debian and pkgsrc (only) to customize system
# behavior. Ref pypa/distutils#2 and pypa/distutils#16.
# This hook is deprecated and no other environments
# should use it.
importlib.import_module('_distutils_system_mod')
except ImportError:
pass