diff options
author | Rohit Goswami <rog32@hi.is> | 2021-08-28 21:55:46 +0000 |
---|---|---|
committer | Rohit Goswami <rog32@hi.is> | 2021-09-20 20:23:54 +0000 |
commit | af5510bc4b1b866a8026bfa71af43d69045b4e88 (patch) | |
tree | 669560dd51d84466b936c794c1c17845bf3c4f65 /numpy/f2py/setup.py | |
parent | 50785ae68e95296c9afbe62c3f50e5d9c6b71c64 (diff) | |
download | numpy-af5510bc4b1b866a8026bfa71af43d69045b4e88.tar.gz |
MAINT,DOC: f2py cleanup
Diffstat (limited to 'numpy/f2py/setup.py')
-rw-r--r-- | numpy/f2py/setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/numpy/f2py/setup.py b/numpy/f2py/setup.py index 0a35db477..31997fa10 100644 --- a/numpy/f2py/setup.py +++ b/numpy/f2py/setup.py @@ -39,8 +39,8 @@ if __name__ == "__main__": config = configuration(top_path='') config = config.todict() - config['download_url'] = "http://cens.ioc.ee/projects/f2py2e/2.x"\ - "/F2PY-2-latest.tar.gz" + config['download_url'] = "https://web.archive.org/web/20140822061353/"\ + "http://cens.ioc.ee/projects/f2py2e/2.x/F2PY-2-latest.tar.gz" config['classifiers'] = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', @@ -68,6 +68,7 @@ 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="http://cens.ioc.ee/projects/f2py2e/", + url="https://web.archive.org/web/20140822061353/"\ + "http://cens.ioc.ee/projects/f2py2e/", keywords=['Fortran', 'f2py'], **config) |