[KoCo-CVS] [Commit] iconvcodec MANIFEST.in README setup.py
Brought to you by:
perky
From: Hye-Shik C. <pe...@us...> - 2003-04-20 21:09:03
|
perky 03/04/20 14:09:02 Modified: . setup.py Added: . MANIFEST.in README Log: Add distutils files Revision Changes Path 1.3 +3 -5 iconvcodec/setup.py Index: setup.py =================================================================== RCS file: /cvsroot/koco/iconvcodec/setup.py,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- setup.py 20 Apr 2003 18:37:38 -0000 1.2 +++ setup.py 20 Apr 2003 21:09:00 -0000 1.3 @@ -25,7 +25,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: setup.py,v 1.2 2003/04/20 18:37:38 perky Exp $ +# $Id: setup.py,v 1.3 2003/04/20 21:09:00 perky Exp $ # import sys @@ -67,10 +67,7 @@ class Install(install): def initialize_options(self): install.initialize_options(self) - if sys.hexversion >= 0x2010000: - self.extra_path = ("iconv_codec", "import iconv_codec") - else: - self.extra_path = "iconv_codec" + self.extra_path = ("iconv_codec", "import iconv_codec") def finalize_options(self): org_install_lib = self.install_lib install.finalize_options(self) @@ -82,6 +79,7 @@ author = "Hye-Shik Chang", author_email = "pe...@Fr...", cmdclass = {'install': Install}, + url = 'http://sourceforge.net/projects/koco/', py_modules = ['iconv_codec'], ext_modules = [ Extension("_iconv_codec", 1.1 iconvcodec/MANIFEST.in Index: MANIFEST.in =================================================================== # $Id: MANIFEST.in,v 1.1 2003/04/20 21:09:00 perky Exp $ include COPYRIGHT MANIFEST.in AUTHORS README include test_iconv_codec.py _iconv_codec_compat.h 1.1 iconvcodec/README Index: README =================================================================== Python Iconv Codec version 1.0 ============================== Copyright(C) Hye-Shik Chang, 2003. $Id: README,v 1.1 2003/04/20 21:09:00 perky Exp $ Introduction ------------ This package provides a Universal Unicode Codec for Python. Requirement ----------- This package requires Python 2.1+. Compatibilities --------------- The following iconv implementations are known to be compatible with iconvcodec: - GNU libiconv: http://www.gnu.org/software/libiconv/ (recommended) - FreeBSD iconv: http://www.freshports.org/converters/iconv/ - GNU libc - Solaris libc - HP-UX libc Installation ------------ python setup.py install [options ...] 'options' are: --with-libc Force to build with iconv in the libc --with-libiconv[=path] Use a separated libiconv on the path (default) You can specify another options for distutils, also. Author ------ Hye-Shik Chang <pe...@Fr...> Any comments, suggestions, and/or patches are very welcome. Thank you for using iconvcodec! |