Re: [Numpy-discussion] how to compile Fortran using setup.py

2011-03-14 Thread Robert Bradshaw
On Mon, Mar 14, 2011 at 1:44 PM, Ondrej Certik wrote: > Hi Pearu! > > On Sat, Mar 12, 2011 at 2:30 AM, Pearu Peterson > wrote: >> >> >> On Fri, Mar 11, 2011 at 3:58 AM, Ondrej Certik wrote: >>> >>> Hi, >>> >>> I spent about an hour googling and didn't figure this out. Here is my >>> setup.py: >>

Re: [Numpy-discussion] how to compile Fortran using setup.py

2011-03-14 Thread Ondrej Certik
Hi Pearu! On Sat, Mar 12, 2011 at 2:30 AM, Pearu Peterson wrote: > > > On Fri, Mar 11, 2011 at 3:58 AM, Ondrej Certik wrote: >> >> Hi, >> >> I spent about an hour googling and didn't figure this out. Here is my >> setup.py: >> >> setup( >>    name = "libqsnake", >>    cmdclass = {'build_ext': bu

Re: [Numpy-discussion] how to compile Fortran using setup.py

2011-03-12 Thread David Cournapeau
On Fri, Mar 11, 2011 at 1:57 AM, Ondrej Certik wrote: > On Thu, Mar 10, 2011 at 8:25 PM, Robert Kern wrote: >> On Thu, Mar 10, 2011 at 19:58, Ondrej Certik wrote: >>> Hi, >>> >>> I spent about an hour googling and didn't figure this out. Here is my >>> setup.py: >>> >>> setup( >>>    name = "li

Re: [Numpy-discussion] how to compile Fortran using setup.py

2011-03-12 Thread Pearu Peterson
On Fri, Mar 11, 2011 at 3:58 AM, Ondrej Certik wrote: > Hi, > > I spent about an hour googling and didn't figure this out. Here is my > setup.py: > > setup( >name = "libqsnake", >cmdclass = {'build_ext': build_ext}, >version = "0.1", >packages = [ >'qsnake', >'qsna

Re: [Numpy-discussion] how to compile Fortran using setup.py

2011-03-11 Thread Ondrej Certik
On Fri, Mar 11, 2011 at 12:24 AM, Dag Sverre Seljebotn wrote: > On 03/11/2011 09:13 AM, Dag Sverre Seljebotn wrote: >> On 03/11/2011 07:57 AM, Ondrej Certik wrote: >>> On Thu, Mar 10, 2011 at 8:25 PM, Robert Kern   wrote: On Thu, Mar 10, 2011 at 19:58, Ondrej Certik   wrote: > Hi, > >

Re: [Numpy-discussion] how to compile Fortran using setup.py

2011-03-11 Thread Dag Sverre Seljebotn
On 03/11/2011 09:13 AM, Dag Sverre Seljebotn wrote: > On 03/11/2011 07:57 AM, Ondrej Certik wrote: >> On Thu, Mar 10, 2011 at 8:25 PM, Robert Kern wrote: >>> On Thu, Mar 10, 2011 at 19:58, Ondrej Certik wrote: Hi, I spent about an hour googling and didn't figure this out. Here is

Re: [Numpy-discussion] how to compile Fortran using setup.py

2011-03-11 Thread Dag Sverre Seljebotn
On 03/11/2011 07:57 AM, Ondrej Certik wrote: > On Thu, Mar 10, 2011 at 8:25 PM, Robert Kern wrote: >> On Thu, Mar 10, 2011 at 19:58, Ondrej Certik wrote: >>> Hi, >>> >>> I spent about an hour googling and didn't figure this out. Here is my >>> setup.py: >>> >>> setup( >>> name = "libqsnake",

Re: [Numpy-discussion] how to compile Fortran using setup.py

2011-03-10 Thread Ondrej Certik
On Thu, Mar 10, 2011 at 8:25 PM, Robert Kern wrote: > On Thu, Mar 10, 2011 at 19:58, Ondrej Certik wrote: >> Hi, >> >> I spent about an hour googling and didn't figure this out. Here is my >> setup.py: >> >> setup( >>    name = "libqsnake", >>    cmdclass = {'build_ext': build_ext}, >>    versio

Re: [Numpy-discussion] how to compile Fortran using setup.py

2011-03-10 Thread Robert Kern
On Thu, Mar 10, 2011 at 19:58, Ondrej Certik wrote: > Hi, > > I spent about an hour googling and didn't figure this out. Here is my > setup.py: > > setup( >    name = "libqsnake", >    cmdclass = {'build_ext': build_ext}, >    version = "0.1", >    packages = [ >        'qsnake', >        'qsnake

[Numpy-discussion] how to compile Fortran using setup.py

2011-03-10 Thread Ondrej Certik
Hi, I spent about an hour googling and didn't figure this out. Here is my setup.py: setup( name = "libqsnake", cmdclass = {'build_ext': build_ext}, version = "0.1", packages = [ 'qsnake', 'qsnake.calculators', 'qsnake.calculators.tests', 'qsnake.dat