File: setup.py

package info (click to toggle)
nkf 1%3A2.1.5-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,496 kB
  • sloc: ansic: 22,612; perl: 548; makefile: 87; sh: 19; python: 9
file content (12 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python

from distutils.core import setup, Extension

setup (name = "nkf",
       version="1.0",
       description="Python Interface to NKF",
       author="Matsumoto Tadashi",
       author_email="ma2@city.plala.jp",
       ext_modules = [
               Extension("nkf", ["NKF_python.c"],
                         extra_link_args = ['-s'])])