cChardet/setup.py

18 lines
492 B
Python
Raw Normal View History

2012-06-20 01:41:36 +00:00
from distutils.core import setup, Extension
from Cython.Distutils import build_ext # use cython's buld_ext
setup(
name = 'cchardet',
2012-06-20 12:45:57 +00:00
url = r"https://github.com/PyYoshi/cChardet",
2012-06-20 01:41:36 +00:00
description = 'Universal encoding detector',
version = '0.1',
cmdclass = {'build_ext': build_ext},
ext_modules = [
Extension("cchardet",
sources = ["cchardet.pyx"],
2012-06-20 12:45:57 +00:00
libraries=['charsetdetect'],
2012-06-20 01:41:36 +00:00
language="c",
),
]
)