X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/distutils/command
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
numpy
/
distutils
/
command
/
ðŸ“
..
📄
__init__.py
(1.01 KB)
ðŸ“
__pycache__
📄
autodist.py
(3.63 KB)
📄
bdist_rpm.py
(709 B)
📄
build.py
(2.55 KB)
📄
build_clib.py
(18.83 KB)
📄
build_ext.py
(31.52 KB)
📄
build_py.py
(1.12 KB)
📄
build_scripts.py
(1.63 KB)
📄
build_src.py
(30.43 KB)
📄
config.py
(20.19 KB)
📄
config_compiler.py
(4.27 KB)
📄
develop.py
(575 B)
📄
egg_info.py
(921 B)
📄
install.py
(3 KB)
📄
install_clib.py
(1.37 KB)
📄
install_data.py
(848 B)
📄
install_headers.py
(919 B)
📄
sdist.py
(733 B)
Editing: egg_info.py
import sys from setuptools.command.egg_info import egg_info as _egg_info class egg_info(_egg_info): def run(self): if 'sdist' in sys.argv: import warnings import textwrap msg = textwrap.dedent(""" `build_src` is being run, this may lead to missing files in your sdist! You want to use distutils.sdist instead of the setuptools version: from distutils.command.sdist import sdist cmdclass={'sdist': sdist}" See numpy's setup.py or gh-7131 for details.""") warnings.warn(msg, UserWarning, stacklevel=2) # We need to ensure that build_src has been executed in order to give # setuptools' egg_info command real filenames instead of functions which # generate files. self.run_command("build_src") _egg_info.run(self)
Upload File
Create Folder