Hi, do you think that fwrap would be usable over the summer? I will be working with some fortran codes (f95), so I am curious whether I should stay with f2py, or invest some time into fwrap and use Cython, that I use anyway for C/C++.
Is there some webpage for it? Bug tracker? I found this blog: http://fortrancython.wordpress.com/ and I found this: http://hg.cython.org/fwrap-dev/ Is this the official source code? How do I compile it and use it? How do I run tests? I tried: $ python fwrap.py Traceback (most recent call last): File "fwrap.py", line 4, in <module> main() File "/home/ondrej/repos/fwrap-dev/fwrap_src/main.py", line 12, in main wrap(options, args) File "/home/ondrej/repos/fwrap-dev/fwrap_src/main.py", line 18, in wrap funcs_templ = [(fc_wrap.generate_fortran, "%s_c.f90"), AttributeError: 'module' object has no attribute 'generate_fortran' $ python runtests.py Traceback (most recent call last): File "runtests.py", line 799, in <module> from fwrap_src.Main import wrap And I didn't find any setup.py, or README (I found NOTES.txt, but no build instructions). Sorry for the basic questions, I just want to give it a shot. Kurt and Dag seem to be working/interested in this, so if we can get something usable (90%) to get started and then once I can use it for my stuff (I just need simple wrappers for now), it'd be really cool. Thanks, Ondrej _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
