OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
hps
/
faces
/
.venv
/
lib
/
python3.10
/
site-packages
/
numpy
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/26/2024 01:25:21 PM
rwxr-xr-x
📁
.dylibs
-
10/26/2024 01:26:15 PM
rwxr-xr-x
📄
LICENSE.txt
79.41 KB
10/26/2024 01:25:14 PM
rw-r--r--
📄
__config__.py
5.02 KB
10/26/2024 01:25:14 PM
rw-r--r--
📄
__init__.cython-30.pxd
35.37 KB
10/26/2024 01:25:14 PM
rw-r--r--
📄
__init__.pxd
33.77 KB
10/26/2024 01:25:14 PM
rw-r--r--
📄
__init__.py
15.79 KB
10/26/2024 01:25:15 PM
rw-r--r--
📄
__init__.pyi
147.67 KB
10/26/2024 01:25:15 PM
rw-r--r--
📁
__pycache__
-
10/26/2024 01:26:35 PM
rwxr-xr-x
📄
_distributor_init.py
331 bytes
10/26/2024 01:25:14 PM
rw-r--r--
📄
_globals.py
3.79 KB
10/26/2024 01:25:14 PM
rw-r--r--
📁
_pyinstaller
-
10/26/2024 01:27:44 PM
rwxr-xr-x
📄
_pytesttester.py
6.51 KB
10/26/2024 01:25:14 PM
rw-r--r--
📄
_pytesttester.pyi
489 bytes
10/26/2024 01:25:14 PM
rw-r--r--
📁
_typing
-
10/26/2024 01:27:44 PM
rwxr-xr-x
📄
_version.py
498 bytes
10/26/2024 01:25:14 PM
rw-r--r--
📁
array_api
-
10/26/2024 01:27:27 PM
rwxr-xr-x
📁
compat
-
10/26/2024 01:27:28 PM
rwxr-xr-x
📄
conftest.py
4.42 KB
10/26/2024 01:25:14 PM
rw-r--r--
📁
core
-
10/26/2024 01:28:47 PM
rwxr-xr-x
📄
ctypeslib.py
17.05 KB
10/26/2024 01:25:14 PM
rw-r--r--
📄
ctypeslib.pyi
7.78 KB
10/26/2024 01:25:14 PM
rw-r--r--
📁
distutils
-
10/26/2024 01:27:34 PM
rwxr-xr-x
📁
doc
-
10/26/2024 01:27:35 PM
rwxr-xr-x
📄
dual.py
2.16 KB
10/26/2024 01:25:14 PM
rw-r--r--
📁
f2py
-
10/26/2024 01:27:37 PM
rwxr-xr-x
📁
fft
-
10/26/2024 01:27:38 PM
rwxr-xr-x
📁
lib
-
10/26/2024 01:27:39 PM
rwxr-xr-x
📁
linalg
-
10/26/2024 01:27:40 PM
rwxr-xr-x
📁
ma
-
10/26/2024 01:27:40 PM
rwxr-xr-x
📄
matlib.py
10.22 KB
10/26/2024 01:25:14 PM
rw-r--r--
📁
matrixlib
-
10/26/2024 01:27:41 PM
rwxr-xr-x
📁
polynomial
-
10/26/2024 01:27:41 PM
rwxr-xr-x
📄
py.typed
0 bytes
10/26/2024 01:25:14 PM
rw-r--r--
📁
random
-
10/26/2024 01:28:58 PM
rwxr-xr-x
📄
setup.py
1.08 KB
10/26/2024 01:25:14 PM
rw-r--r--
📁
testing
-
10/26/2024 01:27:43 PM
rwxr-xr-x
📁
tests
-
10/26/2024 01:27:43 PM
rwxr-xr-x
📁
typing
-
10/26/2024 01:27:44 PM
rwxr-xr-x
📄
version.py
475 bytes
10/26/2024 01:25:14 PM
rw-r--r--
Editing: setup.py
Close
#!/usr/bin/env python3 def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('numpy', parent_package, top_path) config.add_subpackage('array_api') config.add_subpackage('compat') config.add_subpackage('core') config.add_subpackage('distutils') config.add_subpackage('doc') config.add_subpackage('f2py') config.add_subpackage('fft') config.add_subpackage('lib') config.add_subpackage('linalg') config.add_subpackage('ma') config.add_subpackage('matrixlib') config.add_subpackage('polynomial') config.add_subpackage('random') config.add_subpackage('testing') config.add_subpackage('typing') config.add_subpackage('_typing') config.add_data_dir('doc') config.add_data_files('py.typed') config.add_data_files('*.pyi') config.add_subpackage('tests') config.add_subpackage('_pyinstaller') config.make_config_py() # installs __config__.py return config if __name__ == '__main__': print('This is the wrong setup.py file to run')