File size: 321 Bytes
69fb171 |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/usr/bin/env python
from distutils.core import setup,Extension,os
import string
setup(name = "mecab-python",
py_modules=["CRFPP"],
ext_modules = [Extension("_CRFPP",
["CRFPP_wrap.cxx",],
libraries=["crfpp", "pthread"])
])
|