summaryrefslogtreecommitdiff
path: root/doc/source/f2py/code/setup_example.py
blob: 479acc004d601212a92b5f84eab2dad89b9e682e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from numpy.distutils.core import Extension

ext1 = Extension(name = 'scalar',
                 sources = ['scalar.f'])
ext2 = Extension(name = 'fib2',
                 sources = ['fib2.pyf', 'fib1.f'])

if __name__ == "__main__":
    from numpy.distutils.core import setup
    setup(name = 'f2py_example',
          description       = "F2PY Users Guide examples",
          author            = "Pearu Peterson",
          author_email      = "pearu@cens.ioc.ee",
          ext_modules = [ext1, ext2]
          )
# End of setup_example.py