[KoCo-CVS] [Commit] cjkcodecs MANIFEST.in README
Brought to you by:
perky
From: Hye-Shik C. <pe...@us...> - 2003-06-06 06:42:46
|
perky 03/06/05 23:42:45 Added: . MANIFEST.in README Log: Add distribution files Revision Changes Path 1.1 cjkcodecs/MANIFEST.in Index: MANIFEST.in =================================================================== # $Id: MANIFEST.in,v 1.1 2003/06/06 06:42:44 perky Exp $ include README ROADMAP AUTHORS COPYRIGHT include MANIFEST.in recursive-include src *.h *.c recursive-include tests *.py *.txt *.utf8 recursive-include tools *.py global-exclude */CVS/* *.pyc *.pyo 1.1 cjkcodecs/README Index: README =================================================================== CJK Codecs 0.9 ============== Copyright(C) 2002-2003 Hye-Shik Chang. $Id: README,v 1.1 2003/06/06 06:42:44 perky Exp $ Introduction ------------ This package provides Unicode codecs that make Python aware of CJK (Chinese, Japanese and Korean) encodings such as EUC-JP, ISO-2022-KR, BIG5 and GB18030. By using this package, their characters can be treated as a character string instead of a byte sequence. The Unicode-related API in Python was proposed by Marc-Andre Lemburg and defined in the following specification: http://starship.python.net/crew/lemburg/unicode-proposal.txt The provided codecs follow the proposal version 1.8. Please consult the specification for the details of the codecs. The latest version of this package is available at: http://sourceforge.net/projects/koco/ Requirement ----------- This package requires Python 2.1 or later. This package can be easily installed by means of the Distutils (Python Distribution Utilities). Simply issue the following command, after being root if necessary: python setup.py install If you don't need full supports for all the encodings, you can specify the following options: --disable-japanese don't install Japanese codecs --disable-korean don't install Korean codecs --disable-simplified-chinese don't install Simplified Chinese codecs --disable-traditional-chinese don't install Traditional Chinese codecs Author ------ Hye-Shik Chang <pe...@Fr...> Any comments, suggestions, and/or patches are very welcome. Thank you for using CJK Codecs! |