2015-10-01 11:57:50 +00:00
|
|
|
try:
|
|
|
|
import setuptools
|
|
|
|
except:
|
|
|
|
pass
|
2015-08-10 17:01:29 +00:00
|
|
|
import distutils
|
2014-11-20 12:16:26 +00:00
|
|
|
from distutils.core import setup, Extension
|
|
|
|
from distutils.command.build_ext import build_ext
|
2015-03-30 09:20:50 +00:00
|
|
|
from distutils.cmd import Command
|
2014-11-20 12:16:26 +00:00
|
|
|
import platform
|
2015-08-11 09:38:20 +00:00
|
|
|
import os
|
|
|
|
import re
|
2014-11-20 12:16:26 +00:00
|
|
|
|
2015-03-30 09:20:50 +00:00
|
|
|
|
2015-08-11 09:38:20 +00:00
|
|
|
CURR_DIR = os.path.abspath(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
|
2015-08-10 17:01:29 +00:00
|
|
|
|
2015-08-11 09:38:20 +00:00
|
|
|
def get_version():
|
2016-08-22 13:44:12 +00:00
|
|
|
""" Return BROTLI_VERSION string as defined in 'common/version.h' file. """
|
|
|
|
brotlimodule = os.path.join(CURR_DIR, 'common', 'version.h')
|
|
|
|
version = 0
|
2015-08-11 09:38:20 +00:00
|
|
|
with open(brotlimodule, 'r') as f:
|
|
|
|
for line in f:
|
2016-08-22 13:59:08 +00:00
|
|
|
m = re.match(r'#define\sBROTLI_VERSION\s+0x([0-9a-fA-F]+)', line)
|
2015-08-11 09:38:20 +00:00
|
|
|
if m:
|
2016-08-22 13:44:12 +00:00
|
|
|
version = int(m.group(1), 16)
|
|
|
|
if version == 0:
|
|
|
|
return ""
|
|
|
|
return "{0}.{1}.{2}".format(version >> 24, (version >> 12) & 0xFFF, version & 0xFFF)
|
2015-08-11 09:38:20 +00:00
|
|
|
|
|
|
|
|
2015-03-30 09:20:50 +00:00
|
|
|
class TestCommand(Command):
|
|
|
|
""" Run all *_test.py scripts in 'tests' folder with the same Python
|
|
|
|
interpreter used to run setup.py.
|
|
|
|
"""
|
|
|
|
|
|
|
|
user_options = []
|
|
|
|
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def run(self):
|
2015-08-11 09:38:20 +00:00
|
|
|
import sys, subprocess, glob
|
2015-03-30 09:20:50 +00:00
|
|
|
|
2015-08-11 09:38:20 +00:00
|
|
|
test_dir = os.path.join(CURR_DIR, 'python', 'tests')
|
2015-03-30 09:20:50 +00:00
|
|
|
os.chdir(test_dir)
|
|
|
|
|
|
|
|
for test in glob.glob("*_test.py"):
|
|
|
|
try:
|
|
|
|
subprocess.check_call([sys.executable, test])
|
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
raise SystemExit(1)
|
|
|
|
|
|
|
|
|
2014-11-20 12:16:26 +00:00
|
|
|
class BuildExt(build_ext):
|
|
|
|
def get_source_files(self):
|
|
|
|
filenames = build_ext.get_source_files(self)
|
|
|
|
for ext in self.extensions:
|
|
|
|
filenames.extend(ext.depends)
|
|
|
|
return filenames
|
|
|
|
|
|
|
|
def build_extension(self, ext):
|
|
|
|
c_sources = []
|
|
|
|
cxx_sources = []
|
|
|
|
for source in ext.sources:
|
|
|
|
if source.endswith(".c"):
|
|
|
|
c_sources.append(source)
|
|
|
|
else:
|
|
|
|
cxx_sources.append(source)
|
|
|
|
extra_args = ext.extra_compile_args or []
|
|
|
|
|
|
|
|
objects = []
|
|
|
|
for lang, sources in (("c", c_sources), ("c++", cxx_sources)):
|
2015-12-08 12:33:06 +00:00
|
|
|
if lang == "c++":
|
|
|
|
if self.compiler.compiler_type == "msvc":
|
2015-02-26 17:58:28 +00:00
|
|
|
extra_args.append("/EHsc")
|
2014-11-20 12:16:26 +00:00
|
|
|
|
|
|
|
macros = ext.define_macros[:]
|
|
|
|
if platform.system() == "Darwin":
|
|
|
|
macros.append(("OS_MACOSX", "1"))
|
2015-08-10 17:04:30 +00:00
|
|
|
elif self.compiler.compiler_type == "mingw32":
|
|
|
|
# On Windows Python 2.7, pyconfig.h defines "hypot" as "_hypot",
|
|
|
|
# This clashes with GCC's cmath, and causes compilation errors when
|
|
|
|
# building under MinGW: http://bugs.python.org/issue11566
|
|
|
|
macros.append(("_hypot", "hypot"))
|
2014-11-20 12:16:26 +00:00
|
|
|
for undef in ext.undef_macros:
|
|
|
|
macros.append((undef,))
|
|
|
|
|
|
|
|
objs = self.compiler.compile(sources,
|
|
|
|
output_dir=self.build_temp,
|
|
|
|
macros=macros,
|
|
|
|
include_dirs=ext.include_dirs,
|
|
|
|
debug=self.debug,
|
|
|
|
extra_postargs=extra_args,
|
|
|
|
depends=ext.depends)
|
|
|
|
objects.extend(objs)
|
|
|
|
|
|
|
|
self._built_objects = objects[:]
|
|
|
|
if ext.extra_objects:
|
|
|
|
objects.extend(ext.extra_objects)
|
|
|
|
extra_args = ext.extra_link_args or []
|
2015-08-10 17:04:30 +00:00
|
|
|
# when using GCC on Windows, we statically link libgcc and libstdc++,
|
|
|
|
# so that we don't need to package extra DLLs
|
|
|
|
if self.compiler.compiler_type == "mingw32":
|
|
|
|
extra_args.extend(['-static-libgcc', '-static-libstdc++'])
|
2014-11-20 12:16:26 +00:00
|
|
|
|
|
|
|
ext_path = self.get_ext_fullpath(ext.name)
|
|
|
|
# Detect target language, if not provided
|
|
|
|
language = ext.language or self.compiler.detect_language(sources)
|
|
|
|
|
|
|
|
self.compiler.link_shared_object(
|
|
|
|
objects, ext_path,
|
|
|
|
libraries=self.get_libraries(ext),
|
|
|
|
library_dirs=ext.library_dirs,
|
|
|
|
runtime_library_dirs=ext.runtime_library_dirs,
|
|
|
|
extra_postargs=extra_args,
|
|
|
|
export_symbols=self.get_export_symbols(ext),
|
|
|
|
debug=self.debug,
|
|
|
|
build_temp=self.build_temp,
|
|
|
|
target_lang=language)
|
|
|
|
|
|
|
|
brotli = Extension("brotli",
|
|
|
|
sources=[
|
2015-03-31 08:30:56 +00:00
|
|
|
"python/brotlimodule.cc",
|
2016-06-03 10:02:01 +00:00
|
|
|
"common/dictionary.c",
|
|
|
|
"dec/bit_reader.c",
|
|
|
|
"dec/decode.c",
|
|
|
|
"dec/huffman.c",
|
|
|
|
"dec/state.c",
|
2016-06-13 13:22:13 +00:00
|
|
|
"enc/backward_references.c",
|
|
|
|
"enc/bit_cost.c",
|
|
|
|
"enc/block_splitter.c",
|
|
|
|
"enc/brotli_bit_stream.c",
|
|
|
|
"enc/cluster.c",
|
|
|
|
"enc/compress_fragment.c",
|
|
|
|
"enc/compress_fragment_two_pass.c",
|
|
|
|
"enc/encode.c",
|
|
|
|
"enc/entropy_encode.c",
|
|
|
|
"enc/histogram.c",
|
|
|
|
"enc/literal_cost.c",
|
|
|
|
"enc/memory.c",
|
|
|
|
"enc/metablock.c",
|
|
|
|
"enc/static_dict.c",
|
|
|
|
"enc/utf8_util.c",
|
2014-11-20 12:16:26 +00:00
|
|
|
],
|
|
|
|
depends=[
|
2016-06-03 10:02:01 +00:00
|
|
|
"common/constants.h",
|
|
|
|
"common/dictionary.h",
|
|
|
|
"common/port.h",
|
2016-08-22 13:44:12 +00:00
|
|
|
"common/version.h",
|
2016-06-03 10:02:01 +00:00
|
|
|
"dec/bit_reader.h",
|
|
|
|
"dec/context.h",
|
|
|
|
"dec/huffman.h",
|
|
|
|
"dec/port.h",
|
|
|
|
"dec/prefix.h",
|
|
|
|
"dec/state.h",
|
|
|
|
"dec/streams.h",
|
|
|
|
"dec/transform.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/backward_references.h",
|
2016-06-13 13:22:13 +00:00
|
|
|
"enc/backward_references_inc.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/bit_cost.h",
|
2016-06-13 13:22:13 +00:00
|
|
|
"enc/bit_cost_inc.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/block_splitter.h",
|
2016-06-13 13:22:13 +00:00
|
|
|
"enc/block_splitter_inc.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/brotli_bit_stream.h",
|
|
|
|
"enc/cluster.h",
|
2016-06-13 13:22:13 +00:00
|
|
|
"enc/cluster_inc.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/command.h",
|
2016-01-11 11:05:18 +00:00
|
|
|
"enc/compress_fragment.h",
|
2016-06-13 13:22:13 +00:00
|
|
|
"enc/compress_fragment_two_pass.h"
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/context.h",
|
2015-04-23 13:55:43 +00:00
|
|
|
"enc/dictionary_hash.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/entropy_encode.h",
|
2016-01-11 11:05:18 +00:00
|
|
|
"enc/entropy_encode_static.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/fast_log.h",
|
|
|
|
"enc/find_match_length.h",
|
|
|
|
"enc/hash.h",
|
2016-06-13 13:22:13 +00:00
|
|
|
"enc/hash_longest_match_inc.h",
|
|
|
|
"enc/hash_longest_match_quickly_inc.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/histogram.h",
|
2016-06-13 13:22:13 +00:00
|
|
|
"enc/histogram_inc.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/literal_cost.h",
|
2016-06-13 13:22:13 +00:00
|
|
|
"enc/memory.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/metablock.h",
|
2016-06-13 13:22:13 +00:00
|
|
|
"enc/metablock_inc.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/port.h",
|
|
|
|
"enc/prefix.h",
|
|
|
|
"enc/ringbuffer.h",
|
|
|
|
"enc/static_dict.h",
|
2015-06-12 14:45:17 +00:00
|
|
|
"enc/static_dict_lut.h",
|
2015-10-01 13:10:42 +00:00
|
|
|
"enc/utf8_util.h",
|
2015-03-31 08:30:56 +00:00
|
|
|
"enc/write_bits.h",
|
2016-08-23 12:44:13 +00:00
|
|
|
],
|
|
|
|
include_dirs = [
|
|
|
|
"include",
|
2014-11-20 12:16:26 +00:00
|
|
|
],
|
|
|
|
language="c++",
|
|
|
|
)
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="Brotli",
|
2015-08-11 09:38:20 +00:00
|
|
|
version=get_version(),
|
2014-11-20 12:16:26 +00:00
|
|
|
url="https://github.com/google/brotli",
|
|
|
|
description="Python binding of the Brotli compression library",
|
|
|
|
author="Khaled Hosny",
|
|
|
|
author_email="khaledhosny@eglug.org",
|
|
|
|
license="Apache 2.0",
|
2015-10-06 11:23:57 +00:00
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'Programming Language :: C',
|
|
|
|
'Programming Language :: C++',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Unix Shell',
|
|
|
|
'Topic :: Software Development :: Libraries',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
'Topic :: System :: Archiving',
|
|
|
|
'Topic :: System :: Archiving :: Compression',
|
|
|
|
'Topic :: Text Processing :: Fonts',
|
|
|
|
'Topic :: Utilities',
|
|
|
|
],
|
2014-11-20 12:16:26 +00:00
|
|
|
ext_modules=[brotli],
|
2015-03-30 09:20:50 +00:00
|
|
|
cmdclass={
|
|
|
|
'build_ext': BuildExt,
|
|
|
|
'test': TestCommand
|
|
|
|
},
|
2014-11-20 12:16:26 +00:00
|
|
|
)
|