higher-order sequence function

Alex cut_me_out at hotmail.com
Fri Sep 15 12:06:54 EDT 2000


Looks interesting.

Here's a setup.py file that'll make the Makefile unnecessary for those
who have distutils:

import distutils

from distutils.core import Extension, setup

setup(
      ext_modules=[Extension('clseq2',
                             ['clseq2_module.c']
                             )
                   ],
      py_modules=['commonlispseq']
      )

Just stick it in the same directory, and do 'python setup.py install'.

Alex.

-- 
Speak softly but carry a big carrot.




More information about the Python-list mailing list