X7ROOT File Manager
Current Path:
/opt/alt/python310/lib/python3.10/site-packages/setuptools
opt
/
alt
/
python310
/
lib
/
python3.10
/
site-packages
/
setuptools
/
ðŸ“
..
📄
__init__.py
(7.49 KB)
ðŸ“
__pycache__
📄
_deprecation_warning.py
(218 B)
ðŸ“
_distutils
📄
_imp.py
(2.34 KB)
ðŸ“
_vendor
📄
archive_util.py
(6.91 KB)
📄
build_meta.py
(10.04 KB)
ðŸ“
command
📄
config.py
(22.58 KB)
📄
dep_util.py
(949 B)
📄
depends.py
(5.35 KB)
📄
dist.py
(42.08 KB)
📄
errors.py
(524 B)
📄
extension.py
(1.64 KB)
ðŸ“
extern
📄
glob.py
(4.76 KB)
📄
installer.py
(3.48 KB)
📄
launch.py
(812 B)
📄
monkey.py
(5.09 KB)
📄
msvc.py
(49.38 KB)
📄
namespaces.py
(3.02 KB)
📄
package_index.py
(38.95 KB)
📄
py34compat.py
(245 B)
📄
sandbox.py
(14.01 KB)
📄
script (dev).tmpl
(218 B)
📄
script.tmpl
(138 B)
📄
unicode_utils.py
(941 B)
📄
version.py
(144 B)
📄
wheel.py
(8.09 KB)
📄
windows_support.py
(714 B)
Editing: launch.py
""" Launch the Python script on the command line after setuptools is bootstrapped via import. """ # Note that setuptools gets imported implicitly by the # invocation of this script using python -m setuptools.launch import tokenize import sys def run(): """ Run the script in sys.argv[1] as if it had been invoked naturally. """ __builtins__ script_name = sys.argv[1] namespace = dict( __file__=script_name, __name__='__main__', __doc__=None, ) sys.argv[:] = sys.argv[1:] open_ = getattr(tokenize, 'open', open) with open_(script_name) as fid: script = fid.read() norm_script = script.replace('\\r\\n', '\\n') code = compile(norm_script, script_name, 'exec') exec(code, namespace) if __name__ == '__main__': run()
Upload File
Create Folder