'''
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.
In addition if MuPDF is a git checkout and the branch is 'master',
PyMuPDF is configured to build with MuPDF master branch, which may
have a slightly different API from the current release banch.
PYMUPDF_SETUP_MUPDF_BUILD_BRANCH
If set to 'master', PyMuPDF is configured to build with MuPDF master
branch, which may have a slightly different API from the current
release banch.
Other values are ignored.
This is typically only useful if PYMUPDF_SETUP_MUPDF_BUILD is also set,
and not required if mupdf is a git checkout.
PYMUPDF_SETUP_MUPDF_BUILD_TYPE
Unix only. Controls build type of MuPDF. Supported values are:
debug
memento
release (default)
PYMUPDF_SETUP_MUPDF_CLEAN
Unix only. If '1', we do a clean MuPDF build.
PYMUPDF_SETUP_MUPDF_THIRD
If '0' and we are building on Linux with the system MuPDF
(i.e. PYMUPDF_SETUP_MUPDF_BUILD=''), then don't link with
`-lmupdf-third`.
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.
PYMUPDF_SETUP_MUPDF_OVERWRITE_CONFIG
If '0' we do not overwrite MuPDF's include/mupdf/fitz/config.h with
PyMuPDF's own configuration file, before building MuPDF.
PYMUPDF_SETUP_MUPDF_REBUILD
If 0 we do not (re)build mupdf.
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 stat
import subprocess
import sys
import tarfile
import time
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:
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}')
assert os.path.abspath( os.getcwd()) == os.path.abspath( f'{__file__}/..'), \
f'Current directory must be the PyMuPDF directory'
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 as e:
pass
if os.path.exists(path):
def error_fn(fn, path, excinfo):
os.chmod(path, stat.S_IWRITE)
fn(path)
shutil.rmtree( path, onerror=error_fn)
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:
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 word_size():
'''
Returns integer word size (32 or 64) of build.
'''
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"]
if os.environ.get( 'PYMUPDF_SETUP_MUPDF_THIRD') != '0':
DEFAULT.append("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):
'''
Returns `(sha, comment, diff, branch)`, all items are str or None if not
available.
directory:
Root of git checkout.
'''
sha, comment, diff, branch = '', '', '', ''
cp = subprocess.run(
f'cd {directory} && (PAGER= git show --pretty=oneline|head -n 1 && git diff)',
capture_output=1,
shell=1,
text=1,
)
if cp.returncode == 0:
sha, _ = cp.stdout.split(' ', 1)
comment, diff = _.split('\n', 1)
cp = subprocess.run(
f'cd {directory} && git rev-parse --abbrev-ref HEAD',
capture_output=1,
shell=1,
text=1,
)
if cp.returncode == 0:
branch = cp.stdout.strip()
log(f'get_git_id(): directory={directory!r} returning branch={branch!r} sha={sha!r} comment={comment!r}')
return sha, comment, diff, branch
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.22.2-source.tar.gz',
)
log( f'mupdf_url_or_local={mupdf_url_or_local!r}')
if mupdf_url_or_local == '':
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:
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', f'{mupdf_local}/')
if mupdf_url_leaf != mupdf_tgz:
remove( mupdf_tgz)
os.rename( mupdf_url_leaf, mupdf_tgz)
return mupdf_local
else:
mupdf_local = mupdf_url_or_local
if mupdf_local.endswith( '/'):
del mupdf_local[-1]
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')
log( f'PYMUPDF_SETUP_MUPDF_BUILD={path!r}')
if path is None:
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 == '':
log( f'PYMUPDF_SETUP_MUPDF_BUILD="", using system mupdf')
return None
git_prefix = 'git:'
if path.startswith( git_prefix):
command_suffix = path[ len(git_prefix):]
path = 'mupdf'
remove(path)
command = (''
+ f'git clone'
+ f' --recursive'
+ f' --depth 1'
+ f' --shallow-submodules'
+ f' {command_suffix}'
+ f' {path}'
)
log( f'Running: {command}')
subprocess.run( command, shell=True, check=True)
command = f'cd {path} && git show --pretty=oneline|head -n 1'
log( f'Running: {command}')
subprocess.run( command, shell=True, check=False)
if 1:
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_swig_args = []
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:
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
)
):
mupdf_local = get_mupdf()
if mupdf_local:
if mupdf_local.endswith( '/'):
mupdf_local = mupdf_local[:-1]
log( f'mupdf_local={mupdf_local!r}')
unix_build_dir = None
remove( os.path.abspath( f'{__file__}/../build/'))
remove( os.path.abspath( f'{__file__}/../install/'))
if mupdf_local:
log( f'Building mupdf.')
if os.environ.get('PYMUPDF_SETUP_MUPDF_OVERWRITE_CONFIG') == '0':
log( f'Not copying fitz/_config.h to {mupdf_local}/include/mupdf/fitz/config.h.')
s = os.stat( f'{mupdf_local}/include/mupdf/fitz/config.h')
log( f'{mupdf_local}/include/mupdf/fitz/config.h: {s} mtime={time.strftime("%F-%T", time.gmtime(s.st_mtime))}')
else:
log( f'Copying fitz/_config.h to {mupdf_local}/include/mupdf/fitz/config.h')
shutil.copy2( 'fitz/_config.h', f'{mupdf_local}/include/mupdf/fitz/config.h')
if windows:
devenv = os.environ.get('PYMUPDF_SETUP_DEVENV')
log( 'PYMUPDF_SETUP_DEVENV={PYMUPDF_SETUP_DEVENV!r}')
if not devenv:
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:
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}'
archflags = os.environ.get( 'ARCHFLAGS')
if archflags:
flags += f' XCFLAGS="{archflags}" XLIBS="{archflags}"'
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}'
if os.environ.get( 'PYMUPDF_SETUP_MUPDF_CLEAN') == '1':
log(f'Removing {unix_build_dir} because PYMUPDF_SETUP_MUPDF_CLEAN=1')
assert '/build/' in unix_build_dir
remove(unix_build_dir)
command = f'cd {mupdf_local} && {env} {make} {flags}'
command += f' && echo {unix_build_dir}:'
command += f' && ls -l build/{build_prefix}{unix_build_type}'
if os.environ.get( 'PYMUPDF_SETUP_MUPDF_REBUILD') == '0':
log( f'PYMUPDF_SETUP_MUPDF_REBUILD is "0" so not building MuPDF; would have run: {command}')
else:
log( f'Building MuPDF by running: {command}')
subprocess.run( command, shell=True, check=True)
log( f'Finished building mupdf.')
else:
log( f'Using system mupdf.')
unix_build_type = ''
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)
extra_swig_args.append(f'-I{mupdf_local}/include')
if mupdf_local and (linux or openbsd or freebsd):
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:
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 = []
extra_swig_args.append(f'-I/usr/local/include')
extra_swig_args.append(f'-I/usr/include')
elif darwin or openbsd or freebsd:
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")
extra_swig_args.append(f'-I/usr/local/include')
extra_swig_args.append(f'-I/opt/homebrew/include')
library_dirs.append("/opt/homebrew/lib")
if freebsd:
libraries += [
'freetype',
'harfbuzz',
]
elif 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 = [
"libmupdf",
"libresources",
"libthirdparty",
]
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')
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", [])
with open(f'fitz/helper-git-versions.i', 'w') as f:
f.write('%pythoncode %{\n')
def repr_escape(text):
text = repr(text)
text = text.replace('{', '{{')
text = text.replace('}', '}}')
text = text.replace('%', '{chr(37)})')
return 'f' + text
def write_git(name, directory):
sha, comment, diff, branch = get_git_id(directory)
f.write(f'{name}_git_sha = \'{sha}\'\n')
f.write(f'{name}_git_comment = {repr_escape(comment)}\n')
f.write(f'{name}_git_diff = {repr_escape(diff)}\n')
f.write(f'{name}_git_branch = {repr_escape(branch)}\n')
f.write('\n')
write_git('pymupdf', '.')
if mupdf_local:
write_git('mupdf', mupdf_local)
f.write('%}\n')
extra_swig_args.append( '-w509')
log( f'include_dirs={include_dirs}')
log( f'library_dirs={library_dirs}')
log( f'libraries={libraries}')
log( f'extra_swig_args={extra_swig_args}')
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,
swig_opts=extra_swig_args,
)
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.22.6",
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",
},
)