OSDN Git Service

Show endian on --guess.
[nkf/nkf.git] / NKF.python2 / setup.py
1 #!/usr/bin/env python
2
3 from distutils.core import setup, Extension
4
5 setup (name = "nkf",
6        version="1.0",
7        description="Python Interface to NKF",
8        author="Matsumoto Tadashi",
9        author_email="ma2@city.plala.jp",
10        ext_modules = [
11                Extension("nkf", ["NKF_python.c"],
12                          extra_link_args = ['-s'])])