Current Path: > > opt > cloudlinux > venv > lib > python3.11 > site-packages > numpy > > f2py
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
src | Directory | - | - | |
tests | Directory | - | - | |
__init__.py | File | 5227 bytes | April 17 2025 13:10:58. | |
__init__.pyi | File | 1107 bytes | April 17 2025 13:10:58. | |
__main__.py | File | 130 bytes | April 17 2025 13:10:58. | |
__version__.py | File | 34 bytes | April 17 2025 13:10:58. | |
auxfuncs.py | File | 22703 bytes | April 17 2025 13:10:58. | |
capi_maps.py | File | 33003 bytes | April 17 2025 13:10:58. | |
cb_rules.py | File | 25039 bytes | April 17 2025 13:10:58. | |
cfuncs.py | File | 51574 bytes | April 17 2025 13:10:58. | |
common_rules.py | File | 5089 bytes | April 17 2025 13:10:58. | |
crackfortran.py | File | 139630 bytes | April 17 2025 13:10:58. | |
diagnose.py | File | 5197 bytes | April 17 2025 13:10:58. | |
f2py2e.py | File | 24626 bytes | April 17 2025 13:10:58. | |
f90mod_rules.py | File | 9436 bytes | April 17 2025 13:10:58. | |
func2subr.py | File | 9774 bytes | April 17 2025 13:10:58. | |
rules.py | File | 62755 bytes | April 17 2025 13:10:58. | |
setup.py | File | 2335 bytes | April 17 2025 13:10:58. | |
symbolic.py | File | 53002 bytes | April 17 2025 13:10:58. | |
use_rules.py | File | 3587 bytes | April 17 2025 13:10:58. |
#!/usr/bin/env python3 """ setup.py for installing F2PY Usage: pip install . Copyright 2001-2005 Pearu Peterson all rights reserved, Pearu Peterson <pearu@cens.ioc.ee> Permission to use, modify, and distribute this software is given under the terms of the NumPy License. NO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. $Revision: 1.32 $ $Date: 2005/01/30 17:22:14 $ Pearu Peterson """ from numpy.distutils.core import setup from numpy.distutils.misc_util import Configuration from __version__ import version def configuration(parent_package='', top_path=None): config = Configuration('f2py', parent_package, top_path) config.add_subpackage('tests') config.add_data_dir('tests/src') config.add_data_files( 'src/fortranobject.c', 'src/fortranobject.h') config.add_data_files('*.pyi') return config if __name__ == "__main__": config = configuration(top_path='') config = config.todict() config['classifiers'] = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: NumPy License', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: C', 'Programming Language :: Fortran', 'Programming Language :: Python', 'Topic :: Scientific/Engineering', 'Topic :: Software Development :: Code Generators', ] setup(version=version, description="F2PY - Fortran to Python Interface Generator", author="Pearu Peterson", author_email="pearu@cens.ioc.ee", maintainer="Pearu Peterson", maintainer_email="pearu@cens.ioc.ee", license="BSD", platforms="Unix, Windows (mingw|cygwin), Mac OSX", long_description="""\ The Fortran to Python Interface Generator, or F2PY for short, is a command line tool (f2py) for generating Python C/API modules for wrapping Fortran 77/90/95 subroutines, accessing common blocks from Python, and calling Python functions from Fortran (call-backs). Interfacing subroutines/data from Fortran 90/95 modules is supported.""", url="https://numpy.org/doc/stable/f2py/", keywords=['Fortran', 'f2py'], **config)
SILENT KILLER Tool