PATH: //proc/thread-self/root/opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/distutils
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __config__.py
↓
X
📄 __init__.py
↓
X
📄 __init__.pyi
↓
X
📁 __pycache__/
X
📄 _shell_utils.py
↓
X
📄 armccompiler.py
↓
X
📄 ccompiler.py
↓
X
📄 ccompiler_opt.py
↓
X
📁 checks/
X
📁 command/
X
📄 conv_template.py
↓
X
📄 core.py
↓
X
📄 cpuinfo.py
↓
X
📄 exec_command.py
↓
X
📄 extension.py
↓
X
📁 fcompiler/
X
📄 from_template.py
↓
X
📄 fujitsuccompiler.py
↓
X
📄 intelccompiler.py
↓
X
📄 lib2def.py
↓
X
📄 line_endings.py
↓
X
📄 log.py
↓
X
📁 mingw/
X
📄 mingw32ccompiler.py
↓
X
📄 misc_util.py
↓
X
📄 msvc9compiler.py
↓
X
📄 msvccompiler.py
↓
X
📄 npy_pkg_config.py
↓
X
📄 numpy_distribution.py
↓
X
📄 pathccompiler.py
↓
X
📄 setup.py
↓
X
📄 system_info.py
↓
X
📁 tests/
X
📄 unixccompiler.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: setup.py
#!/usr/bin/env python3 def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('distutils', parent_package, top_path) config.add_subpackage('command') config.add_subpackage('fcompiler') config.add_subpackage('tests') config.add_data_files('site.cfg') config.add_data_files('mingw/gfortran_vs2003_hack.c') config.add_data_dir('checks') config.add_data_files('*.pyi') config.make_config_py() return config if __name__ == '__main__': from numpy.distutils.core import setup setup(configuration=configuration)
SIMPAN PERUBAHAN