2012-06-20 15:59:23 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# coding: utf-8
|
|
|
|
|
2012-06-26 07:00:39 +00:00
|
|
|
# python setup.py sdist --formats=gztar
|
|
|
|
|
2013-05-08 02:33:32 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import platform
|
2016-10-17 11:18:24 +00:00
|
|
|
import glob
|
|
|
|
import codecs
|
|
|
|
import re
|
2013-06-09 10:37:34 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
from setuptools import setup, Extension
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup, Extension
|
|
|
|
|
2013-05-08 02:33:32 +00:00
|
|
|
try:
|
|
|
|
import Cython.Compiler.Main as cython_compiler
|
2016-10-17 05:36:43 +00:00
|
|
|
|
2013-05-08 02:33:32 +00:00
|
|
|
have_cython = True
|
|
|
|
except ImportError:
|
|
|
|
have_cython = False
|
2012-08-22 12:49:57 +00:00
|
|
|
from distutils.command.build_ext import build_ext
|
2012-06-23 03:27:19 +00:00
|
|
|
|
2012-06-26 07:00:39 +00:00
|
|
|
DEBUG = False
|
|
|
|
|
2012-08-22 12:49:57 +00:00
|
|
|
src_dir = 'src'
|
2016-10-17 05:36:43 +00:00
|
|
|
ext_dir = os.path.join(src_dir, 'ext')
|
2012-08-22 12:49:57 +00:00
|
|
|
build_dir = 'build'
|
2016-10-17 05:36:43 +00:00
|
|
|
cchardet_dir = os.path.join(src_dir, 'cchardet/')
|
2012-08-22 12:49:57 +00:00
|
|
|
charsetdetect_dir = os.path.join(ext_dir, 'libcharsetdetect/')
|
2016-10-17 05:36:43 +00:00
|
|
|
nspr_emu_dir = os.path.join(charsetdetect_dir, 'nspr-emu/')
|
|
|
|
uchardet_dir = os.path.join(charsetdetect_dir, 'mozilla/extensions/universalchardet/src/base/')
|
2012-06-23 03:27:19 +00:00
|
|
|
|
2013-05-08 02:33:32 +00:00
|
|
|
if have_cython:
|
2016-10-17 05:36:43 +00:00
|
|
|
pyx_sources = glob.glob(cchardet_dir + '*.pyx')
|
|
|
|
sys.stderr.write('cythonize: %r\n' % (pyx_sources,))
|
|
|
|
cython_compiler.compile(pyx_sources, options=cython_compiler.CompilationOptions(cplus=True))
|
|
|
|
cchardet_sources = glob.glob(cchardet_dir + '*.cpp')
|
|
|
|
sources = cchardet_sources + [os.path.join(charsetdetect_dir, 'charsetdetect.cpp')] + glob.glob(uchardet_dir + '*.cpp')
|
2012-06-23 03:27:19 +00:00
|
|
|
|
2012-06-26 00:44:17 +00:00
|
|
|
macros = []
|
2012-07-07 03:44:19 +00:00
|
|
|
extra_compile_args = []
|
|
|
|
extra_link_args = []
|
|
|
|
|
2016-10-17 05:36:43 +00:00
|
|
|
if platform.system() == 'Windows':
|
|
|
|
macros.append(('WIN32', '1'))
|
2012-06-23 03:27:19 +00:00
|
|
|
|
2012-06-26 07:00:39 +00:00
|
|
|
if DEBUG:
|
2016-10-17 05:36:43 +00:00
|
|
|
macros.append(('DEBUG_chardet', '1'))
|
|
|
|
extra_compile_args.append('-g'),
|
|
|
|
extra_link_args.append('-g'),
|
2012-06-26 07:00:39 +00:00
|
|
|
|
2016-10-17 05:36:43 +00:00
|
|
|
cchardet_module = Extension(
|
|
|
|
'cchardet._cchardet',
|
|
|
|
sources=sources,
|
|
|
|
include_dirs=[uchardet_dir, nspr_emu_dir, charsetdetect_dir],
|
|
|
|
language='c++',
|
2012-06-26 07:00:39 +00:00
|
|
|
define_macros=macros,
|
2012-06-23 03:27:19 +00:00
|
|
|
)
|
2012-06-20 01:41:36 +00:00
|
|
|
|
2016-10-17 10:39:55 +00:00
|
|
|
|
|
|
|
def read(f):
|
|
|
|
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
|
|
|
|
|
2016-10-17 11:18:24 +00:00
|
|
|
|
|
|
|
with codecs.open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'src', 'cchardet', 'version.py'), 'r',
|
|
|
|
'latin1') as fp:
|
|
|
|
try:
|
|
|
|
version = re.findall(r"^__version__ = '([^']+)'\r?$",
|
|
|
|
fp.read(), re.M)[0]
|
|
|
|
except IndexError:
|
|
|
|
raise RuntimeError('Unable to determine version.')
|
|
|
|
|
2012-06-20 01:41:36 +00:00
|
|
|
setup(
|
2016-10-17 05:36:43 +00:00
|
|
|
name='cchardet',
|
|
|
|
author='PyYoshi',
|
2016-10-17 06:18:10 +00:00
|
|
|
author_email='myoshi321go@gmail.com',
|
2016-10-17 05:36:43 +00:00
|
|
|
url=r'https://github.com/PyYoshi/cChardet',
|
|
|
|
description='Universal encoding detector. This library is faster than chardet.',
|
2016-10-17 10:39:55 +00:00
|
|
|
long_description='\n\n'.join((read('README.rst'), read('CHANGES.rst'))),
|
2016-11-04 03:17:18 +00:00
|
|
|
version=version,
|
2016-10-17 05:36:43 +00:00
|
|
|
license='MIT License',
|
|
|
|
classifiers=[
|
2013-05-08 05:16:01 +00:00
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Programming Language :: Cython',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Software Development :: Libraries',
|
|
|
|
'Programming Language :: Python :: 2',
|
2016-10-17 10:39:55 +00:00
|
|
|
'Programming Language :: Python :: 2.7',
|
2013-05-08 05:16:01 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
2016-10-17 10:39:55 +00:00
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
2017-01-08 03:48:59 +00:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2013-05-08 05:16:01 +00:00
|
|
|
],
|
2016-10-17 05:36:43 +00:00
|
|
|
keywords=[
|
2012-06-20 15:59:23 +00:00
|
|
|
'cython',
|
|
|
|
'chardet',
|
|
|
|
'charsetdetect'
|
|
|
|
],
|
2016-10-17 05:36:43 +00:00
|
|
|
cmdclass={'build_ext': build_ext},
|
|
|
|
package_dir={'': src_dir},
|
|
|
|
packages=['cchardet', ],
|
|
|
|
ext_modules=[
|
2012-06-23 03:27:19 +00:00
|
|
|
cchardet_module
|
|
|
|
],
|
2013-08-03 12:40:25 +00:00
|
|
|
)
|