From cf86d21f932b3ed8dc43b3a2a61ac4d3bcba2f5d Mon Sep 17 00:00:00 2001 From: JoungKyun Kim Date: Sun, 15 May 2016 21:06:04 +0000 Subject: [PATCH] tagging and release 2.0.0 --- MANIFEST.in | 3 --- PKG-INFO | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++ setup.py | 1 - 3 files changed, 73 insertions(+), 4 deletions(-) delete mode 100644 MANIFEST.in create mode 100644 PKG-INFO diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index d9bf966..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,3 +0,0 @@ -include src/*.h -include Makefile COPYING Changes INSTALL -include tests/* diff --git a/PKG-INFO b/PKG-INFO new file mode 100644 index 0000000..a558691 --- /dev/null +++ b/PKG-INFO @@ -0,0 +1,73 @@ +Metadata-Version: 1.1 +Name: chardet +Version: 2.0.0 +Summary: python binding for libchardet API +Home-page: http://oops.org +Author: JoungKyun.Kim +Author-email: admin@oops.org +License: MPL 1.1 +Description: CHARDET extension 2.0.0 + + DESCRIPTION + + This is python extension that is libchardet python frontend. + + libchardet is based on Mozilla Universal Charset Detector library and, detects + the character set used to encode data. + + From 2.0.0, this module has compatible API with python-chardet. This means that, + this module can be in place the python-chardet without code changes. + + This module is a c-binding, is much faster than the python-chardet. + + + INSTALLATION + + To install this module type the following: + + python setup.py build or make build + python setup.py install or make install + + for details, read INSTALL document. + + + DEPENDENCIES + + This module requires these libraries: + + libchardet that is distributed by follows: + https://github.com/Joungkyun/libchardet + + + USAGE + + See also http://chardet.readthedocs.io/en/latest/usage.html or + test*.py in this source + + + + COPYRIGHT AND LICENCE + + Copyright (C) 2016 by JoungKyun.Kim + + Version: MPL 1.1 + + The contents of this file are subject to the Mozilla Public License Version + 1.1 (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + http://www.mozilla.org/MPL/ + + Software distributed under the License is distributed on an "AS IS" basis, + WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + for the specific language governing rights and limitations under the + License. + + +Keywords: encoding,charset,i18n +Platform: x86/x86_64 +Classifier: License :: OSI Approved :: MIT License Public License (LGPL) +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 2.6 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Topic :: Software Development :: Libraries :: Python Modules diff --git a/setup.py b/setup.py index 5cdc92d..c6861d7 100644 --- a/setup.py +++ b/setup.py @@ -78,7 +78,6 @@ def readme() : classifiers = [ ("License :: OSI Approved :: MIT License" + " Public License (LGPL)"), - "Programming Language :: C++", "Programming Language :: Python", 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7',