setup.py
changeset 6 10bd48c9b6ce
parent 5 59bed837c265
child 7 74fde84264b1
equal deleted inserted replaced
5:59bed837c265 6:10bd48c9b6ce
     8 setup(
     8 setup(
     9     cmdclass = {'build_ext': build_ext},
     9     cmdclass = {'build_ext': build_ext},
    10     ext_modules = [
    10     ext_modules = [
    11         cython_ext("libc", ["libc.pyx"]),
    11         cython_ext("libc", ["libc.pyx"]),
    12         cython_ext("py", ["py.pyx"]),
    12         cython_ext("py", ["py.pyx"]),
    13         cython_ext("sock.addr", ["sock/addr.pyx"]),
    13         cython_ext("socket.addr", ["socket/addr.pyx"]),
       
    14         cython_ext("socket.sock", ["socket/sock.pyx"]),
    14         cython_ext("sctp.sock", ["sctp/sock.pyx"], libraries=['sctp']),
    15         cython_ext("sctp.sock", ["sctp/sock.pyx"], libraries=['sctp']),
    15         cython_ext("sctp.constants", ["sctp/constants.pyx"]),
    16         cython_ext("sctp.constants", ["sctp/constants.pyx"]),
    16     ]
    17     ]
    17 )
    18 )
    18 
    19