OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
hps
/
faces
/
.venv
/
lib
/
python3.10
/
site-packages
/
numpy
/
matrixlib
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/26/2024 01:26:35 PM
rwxr-xr-x
📄
__init__.py
242 bytes
10/26/2024 01:26:30 PM
rw-r--r--
📄
__init__.pyi
252 bytes
10/26/2024 01:26:30 PM
rw-r--r--
📁
__pycache__
-
10/26/2024 01:27:41 PM
rwxr-xr-x
📄
defmatrix.py
29.95 KB
10/26/2024 01:26:30 PM
rw-r--r--
📄
defmatrix.pyi
451 bytes
10/26/2024 01:26:30 PM
rw-r--r--
📄
setup.py
426 bytes
10/26/2024 01:26:30 PM
rw-r--r--
📁
tests
-
10/26/2024 01:28:56 PM
rwxr-xr-x
Editing: setup.py
Close
#!/usr/bin/env python3 def configuration(parent_package='', top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('matrixlib', parent_package, top_path) config.add_subpackage('tests') config.add_data_files('*.pyi') return config if __name__ == "__main__": from numpy.distutils.core import setup config = configuration(top_path='').todict() setup(**config)