OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
numpy
/
distutils
/
command
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 08:45:52 AM
rwxr-xr-x
📄
__init__.py
1.07 KB
09/17/2017 01:29:38 PM
rw-r--r--
📁
__pycache__
-
10/28/2024 08:45:52 AM
rwxr-xr-x
📄
autodist.py
2 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
bdist_rpm.py
775 bytes
09/17/2017 01:29:38 PM
rw-r--r--
📄
build.py
1.58 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
build_clib.py
11.93 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
build_ext.py
21.97 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
build_py.py
1.18 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
build_scripts.py
1.69 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
build_src.py
30.22 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
config.py
17.58 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
config_compiler.py
4.28 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
develop.py
641 bytes
09/17/2017 01:29:38 PM
rw-r--r--
📄
egg_info.py
987 bytes
09/17/2017 01:29:38 PM
rw-r--r--
📄
install.py
3.05 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
install_clib.py
1.28 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
install_data.py
914 bytes
09/17/2017 01:29:38 PM
rw-r--r--
📄
install_headers.py
985 bytes
09/17/2017 01:29:38 PM
rw-r--r--
📄
sdist.py
799 bytes
09/17/2017 01:29:38 PM
rw-r--r--
Editing: develop.py
Close
""" 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 __future__ import division, absolute_import, print_function 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)