OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
numpy
/
distutils
/
command
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
__init__.py
1.01 KB
10/28/2024 05:59:24 AM
rw-r--r--
📁
__pycache__
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
autodist.py
3.63 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
bdist_rpm.py
709 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
build.py
1.35 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
build_clib.py
13.41 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
build_ext.py
25.71 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
build_py.py
1.12 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
build_scripts.py
1.63 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
build_src.py
30.45 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
config.py
20.14 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
config_compiler.py
4.27 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
develop.py
575 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
egg_info.py
921 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
install.py
3.01 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
install_clib.py
1.37 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
install_data.py
848 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
install_headers.py
919 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
sdist.py
733 bytes
10/28/2024 05:59:24 AM
rw-r--r--
Editing: install_data.py
Close
import sys have_setuptools = ('setuptools' in sys.modules) from distutils.command.install_data import install_data as old_install_data #data installer with improved intelligence over distutils #data files are copied into the project directory instead #of willy-nilly class install_data (old_install_data): def run(self): old_install_data.run(self) if have_setuptools: # Run install_clib again, since setuptools does not run sub-commands # of install automatically self.run_command('install_clib') def finalize_options (self): self.set_undefined_options('install', ('install_lib', 'install_dir'), ('root', 'root'), ('force', 'force'), )