blob: c5ff5d6eb916416a382f6478fcc4322de17d6329 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from distutils.core import setup, Extension
setup (name = "iconv",
version = "1.0",
description = "iconv-based Unicode converter",
author = "Martin v. Loewis",
author_email = "loewis@informatik.hu-berlin.de",
url = "http://sourceforge.net/projects/python-codecs/",
long_description =
"""The iconv module exposes the operating system's iconv character
conversion routine to Python. This package provides an iconv wrapper
as well as a Python codec to convert between Unicode objects and
all iconv-provided encodings.
""",
py_modules = ['iconvcodec'],
ext_modules = [Extension("iconv",sources=["iconvmodule.c"])]
)
|