1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
|
'''
Overview:
We hard-code the URL of the MuPDF .tar.gz file that we require. This
generally points to a particular source release on mupdf.com.
Default behaviour:
Building an sdist:
We download the MuPDF .tar.gz file and embed within the sdist.
Building PyMuPDF:
If we are not in an sdist we first download the mupdf .tar.gz file.
Then we extract and build MuPDF locally, before setuptools builds
PyMuPDF. So PyMuPDF will always be built with the exact MuPDF
release that we require.
Environmental variables:
PYMUPDF_SETUP_DEVENV
Location of devenv.com on Windows. If unset we search in some
hard-coded default locations; if that fails we use just 'devenv.com'.
PYMUPDF_SETUP_MUPDF_BUILD
If set, overrides location of mupdf when building PyMuPDF:
Empty string:
Build PyMuPDF with the system mupdf.
A string starting with 'git:':
Use `git clone` to get a mupdf directory. We use the string in
the git clone command; it must contain the git URL from which
to clone, and can also contain other `git clone` args, for
example:
PYMUPDF_SETUP_MUPDF_BUILD="git:--branch master https://github.com/ArtifexSoftware/mupdf.git"
Otherwise:
Location of mupdf directory.
PYMUPDF_SETUP_MUPDF_BUILD_TYPE
Unix only. Controls build type of MuPDF. Supported values are:
debug
memento
release (default)
PYMUPDF_SETUP_MUPDF_CLEAN
If '1', we do a clean MuPDF build.
PYMUPDF_SETUP_MUPDF_TGZ
If set, overrides location of MuPDF .tar.gz file:
Empty string:
Do not download MuPDF .tar.gz file. Sdist's will not contain
MuPDF.
A string containing '://':
The URL from which to download the MuPDF .tar.gz file. Leaf
must match mupdf-*.tar.gz.
Otherwise:
The path of local mupdf git checkout. We put all files in this
checkout known to git into a local tar archive.
Building MuPDF:
When building MuPDF, we overwrite the mupdf's include/mupdf/fitz/config.h
with fitz/_config.h and do a PyMuPDF-specific build.
Known build failures:
Linux:
*musllinux*.
Windows:
pp*:
fitz_wrap.obj : error LNK2001: unresolved external symbol PyUnicode_DecodeRawUnicodeEscape
When using cibuildwheel, one can avoid building these failing wheels with:
CIBW_SKIP='*musllinux* pp*'
'''
import glob
import json
import os
import platform
import re
import shutil
import subprocess
import sys
import tarfile
import urllib.request
from setuptools import Extension, setup
from setuptools.command.build_py import build_py as build_py_orig
_log_prefix = None
def log( text):
global _log_prefix
if not _log_prefix:
p = os.path.abspath( __file__)
p, p1 = os.path.split( p)
p, p0 = os.path.split( p)
_log_prefix = os.path.join( p0, p1)
print(f'{_log_prefix}: {text}', file=sys.stderr)
sys.stderr.flush()
if 1:
# For debugging.
log(f'sys.argv: {sys.argv}')
log(f'os.getcwd(): {os.getcwd()}')
log(f'__file__: {__file__}')
log(f'$PYTHON_ARCH: {os.environ.get("PYTHON_ARCH")!r}')
log(f'os.environ ({len(os.environ)}):')
for k, v in os.environ.items():
log( f' {k}: {v}')
def remove(path):
'''
Removes file or directory, without raising exception if it doesn't exist.
We assert-fail if the path still exists when we return, in case of
permission problems etc.
'''
try:
os.remove( path)
except Exception:
pass
shutil.rmtree( path, ignore_errors=1)
assert not os.path.exists( path)
def tar_check(path, mode='r:gz', prefix=None, remove=False):
'''
Checks items in tar file have same <top-directory>, or <prefix> if not None.
We fail if items in tar file have different top-level directory names.
path:
The tar file.
mode:
As tarfile.open().
prefix:
If not None, we fail if tar file's <top-directory> is not <prefix>.
Returns the directory name (which will be <prefix> if not None).
'''
with tarfile.open( path, mode) as t:
items = t.getnames()
assert items
item = items[0]
assert not item.startswith('./') and not item.startswith('../')
s = item.find('/')
if s == -1:
prefix_actual = item + '/'
else:
prefix_actual = item[:s+1]
if prefix:
assert prefix == prefix_actual, f'prefix={prefix} prefix_actual={prefix_actual}'
for item in items[1:]:
assert item.startswith( prefix_actual), f'prefix_actual={prefix_actual!r} != item={item!r}'
return prefix_actual
def tar_extract(path, mode='r:gz', prefix=None, exists='raise'):
'''
Extracts tar file.
We fail if items in tar file have different <top-directory>.
path:
The tar file.
mode:
As tarfile.open().
prefix:
If not None, we fail if tar file's <top-directory> is not <prefix>.
exists:
What to do if <top-directory> already exists:
'raise': raise exception.
'remove': remove existing file/directory before extracting.
'return': return without extracting.
Returns the directory name (which will be <prefix> if not None, with '/'
appended if not already present).
'''
prefix_actual = tar_check( path, mode, prefix)
if os.path.exists( prefix_actual):
if exists == 'raise':
raise Exception( f'Path already exists: {prefix_actual!r}')
elif exists == 'remove':
remove( prefix_actual)
elif exists == 'return':
log( f'Not extracting {path} because already exists: {prefix_actual}')
return prefix_actual
else:
assert 0, f'Unrecognised exists={exists!r}'
assert not os.path.exists( prefix_actual), f'Path already exists: {prefix_actual}'
log( f'Extracting {path}')
with tarfile.open( path, mode) as t:
t.extractall()
return prefix_actual
def get_gitfiles( directory, submodules=False):
'''
Returns list of all files known to git in <directory>; <directory> must be
somewhere within a git checkout.
Returned names are all relative to <directory>.
If <directory>.git exists we use git-ls-files and write list of files to
<directory>/jtest-git-files.
Otherwise we require that <directory>/jtest-git-files already exists.
'''
def is_within_git_checkout( d):
while 1:
#log( '{d=}')
if not d:
break
if os.path.isdir( f'{d}/.git'):
return True
d = os.path.dirname( d)
if is_within_git_checkout( directory):
command = 'cd ' + directory + ' && git ls-files'
if submodules:
command += ' --recurse-submodules'
command += ' > jtest-git-files'
log( f'Running: {command}')
subprocess.run( command, shell=True, check=True)
with open( '%s/jtest-git-files' % directory, 'r') as f:
text = f.read()
ret = text.strip().split( '\n')
return ret
def get_git_id_raw( directory):
if not os.path.isdir( '%s/.git' % directory):
return
text = system(
f'cd {directory} && (PAGER= git show --pretty=oneline|head -n 1 && git diff)',
out='return',
)
return text
def word_size():
'''
Returns integer word size (32 or 64) of build.
'''
# Looks like on Windows, cibuildwheel runs us with a 64-bit Python
# interpreter even when building a 32-bit wheel. It appears to set
# PYTHON_ARCH to indicate word size (this isn't documented anywhere?).
#
a = os.environ.get( 'PYTHON_ARCH')
if a is None:
if sys.maxsize == 2**31-1:
return 32
elif sys.maxsize == 2**63-1:
return 64
else:
assert 0, 'Unrecognised sys.maxsize={sys.maxsize!r}'
else:
if a == '32':
return 32
elif a == '64':
return 64
else:
assert 0, f'Unrecognised $PYTHON_ARCH={a!r}'
class build_ext_first(build_py_orig):
"""
custom build_py command which runs build_ext first
this is necessary because build_py needs the fitz.py which is only generated
by SWIG in the build_ext step
"""
def run(self):
self.run_command("build_ext")
return super().run()
DEFAULT = [
"mupdf",
"mupdf-third",
]
ALPINE = DEFAULT + [
"jbig2dec",
"jpeg",
"openjp2",
"harfbuzz",
]
ARCH_LINUX = DEFAULT + [
"jbig2dec",
"openjp2",
"jpeg",
"freetype",
"gumbo",
]
NIX = ARCH_LINUX + [
"harfbuzz",
]
OPENSUSE = NIX + [
"png16",
]
DEBIAN = OPENSUSE + [
"mujs",
]
FEDORA = NIX + [
"leptonica",
"tesseract",
]
LIBRARIES = {
"default": DEFAULT,
"ubuntu": DEBIAN,
"arch": ARCH_LINUX,
"manjaro": ARCH_LINUX,
"artix": ARCH_LINUX,
"opensuse": OPENSUSE,
"fedora": FEDORA,
"alpine": ALPINE,
"nix": NIX,
"debian": DEBIAN,
}
def load_libraries():
if os.getenv("NIX_STORE"):
return LIBRARIES["nix"]
try:
import distro
os_id = distro.id()
except:
os_id = ""
if os_id in list(LIBRARIES.keys()) + ["manjaro", "artix"]:
return LIBRARIES[os_id]
filepath = "/etc/os-release"
if not os.path.exists(filepath):
return LIBRARIES["default"]
regex = re.compile("^([\\w]+)=(?:'|\")?(.*?)(?:'|\")?$")
with open(filepath) as os_release:
info = {
regex.match(line.strip()).group(1): re.sub(
r'\\([$"\'\\`])', r"\1", regex.match(line.strip()).group(2)
)
for line in os_release
if regex.match(line.strip())
}
os_id = info["ID"]
if os_id.startswith("opensuse"):
os_id = "opensuse"
if os_id not in LIBRARIES.keys():
return LIBRARIES["default"]
return LIBRARIES[os_id]
def get_git_id( directory, allow_none=False):
'''
Returns text where first line is '<git-sha> <commit summary>' and remaining
lines contain output from 'git diff' in <directory>.
directory:
Root of git checkout.
allow_none:
If true, we return None if <directory> is not a git checkout and
jtest-git-id file does not exist.
'''
filename = f'{directory}/jtest-git-id'
text = get_git_id_raw( directory)
if text:
with open( filename, 'w') as f:
f.write( text)
elif os.path.isfile( filename):
with open( filename) as f:
text = f.read()
else:
if not allow_none:
raise Exception( f'Not in git checkout, and no file called: {filename}.')
text = None
return text
mupdf_tgz = os.path.abspath( f'{__file__}/../mupdf.tgz')
def get_mupdf_tgz():
'''
Creates .tgz file containing MuPDF source, for inclusion in an sdist.
What we do depends on environmental variable PYMUPDF_SETUP_MUPDF_TGZ; see
docs at start of this file for details.
Returns name of top-level directory within the .tgz file.
'''
mupdf_url_or_local = os.environ.get(
'PYMUPDF_SETUP_MUPDF_TGZ',
'https://mupdf.com/downloads/archive/mupdf-1.21.1-source.tar.gz',
)
log( f'mupdf_url_or_local={mupdf_url_or_local!r}')
if mupdf_url_or_local == '':
# No mupdf in sdist.
log( 'mupdf_url_or_local is empty string so removing any mupdf_tgz={mupdf_tgz}')
remove( mupdf_tgz)
return
if '://' in mupdf_url_or_local:
# Download from URL into <mupdf_tgz>.
mupdf_url = mupdf_url_or_local
mupdf_url_leaf = os.path.basename( mupdf_url)
leaf = '.tar.gz'
assert mupdf_url_leaf.endswith(leaf), f'Unrecognised suffix in mupdf_url={mupdf_url!r}'
mupdf_local = mupdf_url_leaf[ : -len(leaf)] + '/'
assert mupdf_local.startswith( 'mupdf-')
log(f'Downloading from: {mupdf_url}')
remove( mupdf_url_leaf)
urllib.request.urlretrieve( mupdf_url, mupdf_url_leaf)
assert os.path.exists( mupdf_url_leaf)
tar_check( mupdf_url_leaf, 'r:gz', mupdf_local)
if mupdf_url_leaf != mupdf_tgz:
remove( mupdf_tgz)
os.rename( mupdf_url_leaf, mupdf_tgz)
return mupdf_local
else:
# Create archive <mupdf_tgz> contining local mupdf directory's git
# files.
mupdf_local = mupdf_url_or_local
if not mupdf_local.endswith( '/'):
mupdf_local += '/'
assert os.path.isdir( mupdf_local), f'Not a directory: {mupdf_local!r}'
log( f'Creating .tgz from git files in: {mupdf_local}')
remove( mupdf_tgz)
with tarfile.open( mupdf_tgz, 'w:gz') as f:
for name in get_gitfiles( mupdf_local, submodules=True):
path = os.path.join( mupdf_local, name)
if os.path.isfile( path):
f.add( path, f'mupdf/{name}', recursive=False)
return mupdf_local
def get_mupdf():
'''
Downloads and/or extracts mupdf and returns location of mupdf directory.
Exact behaviour depends on environmental variable
PYMUPDF_SETUP_MUPDF_BUILD; see docs at start of this file for details.
'''
path = os.environ.get( 'PYMUPDF_SETUP_MUPDF_BUILD')
if path is None:
# Default.
if os.path.exists( mupdf_tgz):
log( f'mupdf_tgz already exists: {mupdf_tgz}')
else:
get_mupdf_tgz()
return tar_extract( mupdf_tgz, exists='return')
elif path == '':
# Use system mupdf.
log( f'PYMUPDF_SETUP_MUPDF_BUILD="", using system mupdf')
return None
git_prefix = 'git:'
if path.startswith( git_prefix):
# Get git clone of mupdf.
#
# `mupdf_url_or_local` is taken to be portion of a `git clone` command,
# for example:
#
# PYMUPDF_SETUP_MUPDF_BUILD="git:--branch master git://git.ghostscript.com/mupdf.git"
# PYMUPDF_SETUP_MUPDF_BUILD="git:--branch 1.20.x https://github.com/ArtifexSoftware/mupdf.git"
# PYMUPDF_SETUP_MUPDF_BUILD="git:--branch master https://github.com/ArtifexSoftware/mupdf.git"
#
# One would usually also set PYMUPDF_SETUP_MUPDF_TGZ= (empty string) to
# avoid the need to download a .tgz into an sdist.
#
command_suffix = path[ len(git_prefix):]
path = 'mupdf'
assert not os.path.exists( path), \
f'Cannot use git clone because local directory already exists: {path}'
command = (''
+ f'git clone'
+ f' --recursive'
#+ f' --single-branch'
#+ f' --recurse-submodules'
+ f' --depth 1'
+ f' --shallow-submodules'
#+ f' --branch {branch}'
#+ f' git://git.ghostscript.com/mupdf.git'
+ f' {command_suffix}'
+ f' {path}'
)
log( f'Running: {command}')
subprocess.run( command, shell=True, check=True)
# Show sha of checkout.
command = f'cd {path} && git show --pretty=oneline|head -n 1'
log( f'Running: {command}')
subprocess.run( command, shell=True, check=False)
if 1:
# Use custom mupdf directory.
log( f'Using custom mupdf directory from $PYMUPDF_SETUP_MUPDF_BUILD: {path}')
assert os.path.isdir( path), f'$PYMUPDF_SETUP_MUPDF_BUILD is not a directory: {path}'
return path
include_dirs = []
library_dirs = []
libraries = []
extra_link_args = []
extra_compile_args = []
log( f'platform.system()={platform.system()!r}')
log( f'sys.platform={sys.platform!r}')
linux = platform.system() == 'Linux'
openbsd = platform.system() == 'OpenBSD'
freebsd = platform.system() == 'FreeBSD'
darwin = platform.system() == 'Darwin'
windows = platform.system() == 'Windows' or platform.system().startswith('CYGWIN')
if 'sdist' in sys.argv:
# Create local mupdf.tgz, for inclusion in sdist.
get_mupdf_tgz()
if ('-h' not in sys.argv and '--help' not in sys.argv
and (0
or 'bdist_wheel' in sys.argv
or 'build' in sys.argv
or 'bdist' in sys.argv
or 'install' in sys.argv
)
):
# Build MuPDF before setuptools runs, so that it can link with the MuPDF
# libraries.
#
mupdf_local = get_mupdf()
if mupdf_local:
if not mupdf_local.endswith( '/'):
mupdf_local += '/'
log( f'mupdf_local={mupdf_local!r}')
unix_build_dir = None
# Force clean build of MuPDF.
#
if mupdf_local and os.environ.get( 'PYMUPDF_SETUP_MUPDF_CLEAN') == '1':
remove( f'{mupdf_local}build')
# Always force clean build of PyMuPDF SWIG files etc, because setuptools
# doesn't seem to notice when our mupdf headers etc are newer than the
# SWIG-generated files.
#
remove( os.path.abspath( f'{__file__}/../build/'))
remove( os.path.abspath( f'{__file__}/../install/'))
# Copy PyMuPDF's config file into mupdf. For example this #define's TOFU,
# which excludes various fonts in the MuPDF binaries.
if mupdf_local:
log( f'Building mupdf.')
shutil.copy2( 'fitz/_config.h', f'{mupdf_local}include/mupdf/fitz/config.h')
if windows:
# Windows build.
devenv = os.environ.get('PYMUPDF_SETUP_DEVENV')
if not devenv:
# Search for devenv in some known locations.
devenv = glob.glob('C:/Program Files (x86)/Microsoft Visual Studio/2019/*/Common7/IDE/devenv.com')
if devenv:
devenv = devenv[0]
if not devenv:
devenv = 'devenv.com'
log( f'Cannot find devenv.com in default locations, using: {devenv!r}')
windows_config = 'Win32' if word_size()==32 else 'x64'
command = (
f'cd {mupdf_local}&&'
f'"{devenv}"'
f' platform/win32/mupdf.sln'
f' /Build "ReleaseTesseract|{windows_config}"'
f' /Project mupdf'
)
else:
# Unix build.
#
flags = 'HAVE_X11=no HAVE_GLFW=no HAVE_GLUT=no HAVE_LEPTONICA=yes HAVE_TESSERACT=yes'
flags += ' verbose=yes'
env = ''
make = 'make'
if linux:
env += ' CFLAGS="-fPIC"'
if openbsd or freebsd:
make = 'gmake'
env += ' CFLAGS="-fPIC" CXX=clang++'
unix_build_type = os.environ.get( 'PYMUPDF_SETUP_MUPDF_BUILD_TYPE', 'release')
assert unix_build_type in ('debug', 'memento', 'release')
flags += f' build={unix_build_type}'
# This is for MacOS cross-compilation, where ARCHFLAGS can be
# '-arch arm64'.
#
archflags = os.environ.get( 'ARCHFLAGS')
if archflags:
flags += f' XCFLAGS="{archflags}" XLIBS="{archflags}"'
# We specify a build directory path containing 'pymupdf' so that we
# coexist with non-pymupdf builds (because pymupdf builds have a
# different config.h).
#
# We also append further text to try to allow different builds to
# work if they reuse the mupdf directory.
#
# Using platform.machine() (e.g. 'amd64') ensures that different
# builds of mupdf on a shared filesystem can coexist. Using
# $_PYTHON_HOST_PLATFORM allows cross-compiled cibuildwheel builds
# to coexist, e.g. on github.
#
build_prefix = f'pymupdf-{platform.machine()}-'
build_prefix_extra = os.environ.get( '_PYTHON_HOST_PLATFORM')
if build_prefix_extra:
build_prefix += f'{build_prefix_extra}-'
flags += f' build_prefix={build_prefix}'
unix_build_dir = f'{mupdf_local}build/{build_prefix}{unix_build_type}'
command = f'cd {mupdf_local} && {env} {make} {flags}'
command += f' && echo {unix_build_dir}:'
command += f' && ls -l build/{build_prefix}{unix_build_type}'
log( f'Building MuPDF by running: {command}')
subprocess.run( command, shell=True, check=True)
log( f'Finished building mupdf.')
else:
# Use installed MuPDF.
log( f'Using system mupdf.')
unix_build_type = ''
# Set include and library paths for building PyMuPDF.
#
if mupdf_local:
assert os.path.isdir( mupdf_local), f'Not a directory: {mupdf_local!r}'
include_dirs.append( f'{mupdf_local}include')
include_dirs.append( f'{mupdf_local}include/mupdf')
include_dirs.append( f'{mupdf_local}thirdparty/freetype/include')
if unix_build_dir:
library_dirs.append( unix_build_dir)
if mupdf_local and (linux or openbsd or freebsd):
# setuptools' link command always seems to put '-L
# /usr/local/lib' before any <library_dirs> that we specify,
# so '-l mupdf -l mupdf-third' will end up using the system
# libmupdf.so (if installed) instead of the one we've built in
# <mupdf_local>.
#
# So we force linking with our mupdf libraries by specifying
# them in <extra_link_args>.
#
extra_link_args.append( f'{unix_build_dir}/libmupdf.a')
extra_link_args.append( f'{unix_build_dir}/libmupdf-third.a')
library_dirs = []
libraries = []
if openbsd or freebsd:
if os.environ.get( 'PYMUPDF_SETUP_MUPDF_BUILD_TYPE') == 'memento':
extra_link_args.append( f'-lexecinfo')
elif mupdf_local and darwin:
library_dirs.append(f'{unix_build_dir}')
libraries = [
f'mupdf',
f'mupdf-third',
]
elif linux:
# Use system libraries.
include_dirs.append( '/usr/include/mupdf')
include_dirs.append( '/usr/local/include/mupdf')
include_dirs.append( '/usr/include/freetype2')
libraries = load_libraries()
extra_link_args = []
elif darwin or openbsd or freebsd:
# Use system libraries.
include_dirs.append("/usr/local/include/mupdf")
include_dirs.append("/usr/local/include")
include_dirs.append("/opt/homebrew/include/mupdf")
library_dirs.append("/usr/local/lib")
libraries = ["mupdf", "mupdf-third"]
library_dirs.append("/opt/homebrew/lib")
include_dirs.append("/usr/include/freetype2")
include_dirs.append("/usr/local/include/freetype2")
include_dirs.append("/usr/X11R6/include/freetype2")
include_dirs.append("/opt/homebrew/include")
include_dirs.append("/opt/homebrew/include/freetype2")
library_dirs.append("/opt/homebrew/lib")
if freebsd:
libraries += [
'freetype',
'harfbuzz',
]
elif windows:
# Windows.
assert mupdf_local
if word_size() == 32:
library_dirs.append( f'{mupdf_local}platform/win32/ReleaseTesseract')
library_dirs.append( f'{mupdf_local}platform/win32/Release')
else:
library_dirs.append( f'{mupdf_local}platform/win32/x64/ReleaseTesseract')
library_dirs.append( f'{mupdf_local}platform/win32/x64/Release')
libraries = DEBIAN
extra_link_args = ["/NODEFAULTLIB:MSVCRT"]
else:
assert 0, 'Unrecognised OS'
if linux or openbsd or freebsd or darwin:
extra_compile_args.append( '-Wno-incompatible-pointer-types')
extra_compile_args.append( '-Wno-pointer-sign')
extra_compile_args.append( '-Wno-sign-compare')
if unix_build_type == 'memento':
extra_compile_args.append( '-DMEMENTO')
if openbsd:
extra_compile_args.append( '-Wno-deprecated-declarations')
# add any local include and library folders
pymupdf_dirs = os.environ.get("PYMUPDF_DIRS", None)
if pymupdf_dirs:
with open(pymupdf_dirs) as dirfile:
local_dirs = json.load(dirfile)
include_dirs += local_dirs.get("include_dirs", [])
library_dirs += local_dirs.get("library_dirs", [])
log( f'include_dirs={include_dirs}')
log( f'library_dirs={library_dirs}')
log( f'libraries={libraries}')
log( f'extra_compile_args={extra_compile_args}')
log( f'extra_link_args={extra_link_args}')
module = Extension(
"fitz._fitz",
["fitz/fitz.i"],
language="c++",
include_dirs=include_dirs,
library_dirs=library_dirs,
libraries=libraries,
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
# Disable bogus SWIG warning 509, 'Overloaded method ... effectively
# ignored, as it is shadowed by ...'.
swig_opts=['-w509']
)
setup_py_cwd = os.path.dirname(__file__)
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Utilities",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries",
]
with open(os.path.join(setup_py_cwd, "README.md"), encoding="utf-8") as f:
readme = f.read()
setup(
name="PyMuPDF",
version="1.21.1",
description="Python bindings for the PDF toolkit and renderer MuPDF",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=classifiers,
url="https://github.com/pymupdf/PyMuPDF",
author="Artifex",
author_email="support@artifex.com",
cmdclass={"build_py": build_ext_first},
ext_modules=[module],
python_requires=">=3.7",
py_modules=["fitz.fitz", "fitz.utils", "fitz.__main__"],
license="GNU AFFERO GPL 3.0",
project_urls={
"Documentation": "https://pymupdf.readthedocs.io/",
"Source": "https://github.com/pymupdf/pymupdf",
"Tracker": "https://github.com/pymupdf/PyMuPDF/issues",
"Changelog": "https://pymupdf.readthedocs.io/en/latest/changes.html",
},
)
|