OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
hps
/
faces
/
faces
/
lib
/
python3.10
/
site-packages
/
numpy
/
fft
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/26/2024 01:27:22 PM
rwxr-xr-x
📄
__init__.py
7.98 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
__init__.pyi
550 bytes
10/26/2024 01:27:16 PM
rw-r--r--
📁
__pycache__
-
10/26/2024 01:28:18 PM
rwxr-xr-x
📄
_pocketfft.py
51.66 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
_pocketfft.pyi
2.32 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
_pocketfft_internal.cpython-310-darwin.so
103.82 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
helper.py
6.01 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
helper.pyi
1.13 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
setup.py
728 bytes
10/26/2024 01:27:16 PM
rw-r--r--
📁
tests
-
10/26/2024 01:29:27 PM
rwxr-xr-x
Editing: setup.py
Close
import sys def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('fft', parent_package, top_path) config.add_subpackage('tests') # AIX needs to be told to use large file support - at all times defs = [('_LARGE_FILES', None)] if sys.platform[:3] == "aix" else [] # Configure pocketfft_internal config.add_extension('_pocketfft_internal', sources=['_pocketfft.c'], define_macros=defs, ) config.add_data_files('*.pyi') return config if __name__ == '__main__': from numpy.distutils.core import setup setup(configuration=configuration)