OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
hps
/
faces
/
.venv
/
lib
/
python3.10
/
site-packages
/
numpy
/
testing
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
673 bytes
10/26/2024 01:26:34 PM
rw-r--r--
📄
__init__.pyi
1.76 KB
10/26/2024 01:26:34 PM
rw-r--r--
📁
__pycache__
-
10/26/2024 01:27:43 PM
rwxr-xr-x
📁
_private
-
10/26/2024 01:28:58 PM
rwxr-xr-x
📄
print_coercion_tables.py
6.04 KB
10/26/2024 01:26:34 PM
rw-r--r--
📄
setup.py
709 bytes
10/26/2024 01:26:34 PM
rw-r--r--
📁
tests
-
10/26/2024 01:28:58 PM
rwxr-xr-x
📄
utils.py
1.23 KB
10/26/2024 01:26:34 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('testing', parent_package, top_path) config.add_subpackage('_private') config.add_subpackage('tests') config.add_data_files('*.pyi') config.add_data_files('_private/*.pyi') return config if __name__ == '__main__': from numpy.distutils.core import setup setup(maintainer="NumPy Developers", maintainer_email="numpy-dev@numpy.org", description="NumPy test module", url="https://www.numpy.org", license="NumPy License (BSD Style)", configuration=configuration, )