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: develop.py
""" Override the develop command from setuptools so we can ensure that our generated files (from build_src or build_scripts) are properly converted to real files with filenames. """ from setuptools.command.develop import develop as old_develop class develop(old_develop): __doc__ = old_develop.__doc__ def install_for_development(self): # Build sources in-place, too. self.reinitialize_command('build_src', inplace=1) # Make sure scripts are built. self.run_command('build_scripts') old_develop.install_for_development(self)
Upload File
Create Folder