summaryrefslogtreecommitdiffstats
path: root/iconvmodule/setup.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-10-16 20:59:15 +0000
committerMatt Wilson <msw@redhat.com>2001-10-16 20:59:15 +0000
commitcc02a97cc308be0ae7d6e4ac6c605518103c6f22 (patch)
tree21376b7119090a57bc496a2731b7952fd465b0a9 /iconvmodule/setup.py
parent584b653db54b96a7721cffeba67680495e59337c (diff)
downloadanaconda-cc02a97cc308be0ae7d6e4ac6c605518103c6f22.tar.gz
anaconda-cc02a97cc308be0ae7d6e4ac6c605518103c6f22.tar.xz
anaconda-cc02a97cc308be0ae7d6e4ac6c605518103c6f22.zip
merge anaconda-gtk-2-0-branch to HEAD
Diffstat (limited to 'iconvmodule/setup.py')
-rw-r--r--iconvmodule/setup.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/iconvmodule/setup.py b/iconvmodule/setup.py
new file mode 100644
index 000000000..c5ff5d6eb
--- /dev/null
+++ b/iconvmodule/setup.py
@@ -0,0 +1,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"])]
+ )
+