OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
hps
/
faces
/
.venv
/
lib
/
python3.10
/
site-packages
/
numpy
/
distutils
/
command
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/26/2024 01:27:34 PM
rwxr-xr-x
📄
__init__.py
1.01 KB
10/26/2024 01:27:33 PM
rw-r--r--
📁
__pycache__
-
10/26/2024 01:28:52 PM
rwxr-xr-x
📄
autodist.py
3.63 KB
10/26/2024 01:27:32 PM
rw-r--r--
📄
bdist_rpm.py
709 bytes
10/26/2024 01:27:32 PM
rw-r--r--
📄
build.py
2.55 KB
10/26/2024 01:27:33 PM
rw-r--r--
📄
build_clib.py
18.78 KB
10/26/2024 01:27:33 PM
rw-r--r--
📄
build_ext.py
31.49 KB
10/26/2024 01:27:33 PM
rw-r--r--
📄
build_py.py
1.12 KB
10/26/2024 01:27:33 PM
rw-r--r--
📄
build_scripts.py
1.63 KB
10/26/2024 01:27:33 PM
rw-r--r--
📄
build_src.py
30.44 KB
10/26/2024 01:27:33 PM
rw-r--r--
📄
config.py
20.19 KB
10/26/2024 01:27:33 PM
rw-r--r--
📄
config_compiler.py
4.27 KB
10/26/2024 01:27:33 PM
rw-r--r--
📄
develop.py
575 bytes
10/26/2024 01:27:33 PM
rw-r--r--
📄
egg_info.py
921 bytes
10/26/2024 01:27:33 PM
rw-r--r--
📄
install.py
3.01 KB
10/26/2024 01:27:33 PM
rw-r--r--
📄
install_clib.py
1.37 KB
10/26/2024 01:27:33 PM
rw-r--r--
📄
install_data.py
848 bytes
10/26/2024 01:27:33 PM
rw-r--r--
📄
install_headers.py
919 bytes
10/26/2024 01:27:33 PM
rw-r--r--
📄
sdist.py
733 bytes
10/26/2024 01:27:33 PM
rw-r--r--
Editing: egg_info.py
Close
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)