From bab1e6494ee826e2a3d4b01d31bc6342509e1db4 Mon Sep 17 00:00:00 2001 From: PyYoshi Date: Thu, 21 Jun 2012 00:59:23 +0900 Subject: [PATCH] add important information --- setup.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/setup.py b/setup.py index 862326e..1e449db 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,31 @@ +#!/usr/bin/env python +# coding: utf-8 + from distutils.core import setup, Extension from Cython.Distutils import build_ext # use cython's buld_ext setup( name = 'cchardet', + author= 'PyYoshi', url = r"https://github.com/PyYoshi/cChardet", description = 'Universal encoding detector', + long_description= """This library is high speed universal character encoding detector. - binding to charsetdetect. +This library is faster than chardet. +""", version = '0.1', + classifiers = [ + 'Development Status :: 1 - Planning', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Cython', + 'Programming Language :: Python', + 'Topic :: Software Development :: Libraries', + ], + keywords = [ + 'cython', + 'chardet', + 'universal character encoding detector', + 'charsetdetect' + ], cmdclass = {'build_ext': build_ext}, ext_modules = [ Extension("cchardet",