-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
295 lines (262 loc) · 9.08 KB
/
setup.py
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
# -*- coding: utf-8 -*-
import argparse
import os
import shlex
import subprocess
import sys
import sysconfig
import warnings
from pathlib import Path
from shlex import quote
from subprocess import PIPE, Popen, check_call
from setuptools import Extension, setup
try:
from Cython.Build import cythonize
USE_CYTHON = True
except ImportError:
USE_CYTHON = False
# Below is a set of libraries which shouldn't be linked
# if we are using MSVC. Currently, pkg-config returns some of
# these libraries when building using conda.
IGNORE_LIBS_WIN = {"m", "c", "pthread", "dl", "rt"}
coverage = False
if sys.argv[-1] == "--coverage":
coverage = True
sys.argv.pop()
def get_version():
dic = {}
version_file = "manimpango/_version.py"
with open(version_file) as f:
exec(compile(f.read(), version_file, "exec"), dic)
return dic["__version__"]
NAME = "ManimPango"
MANIMPANGO_VERSION = get_version()
MINIMUM_PANGO_VERSION = "1.30.0"
DEBUG = False
if sys.platform == "win32" and sys.version_info >= (3, 14):
import atexit
atexit.register(
lambda: warnings.warn(
f"ManimPango {MANIMPANGO_VERSION} does not support Python "
f"{sys.version_info.major}.{sys.version_info.minor} and does not provide "
"prebuilt Windows binaries. We do not recommend building from source on "
"Windows.",
RuntimeWarning,
)
)
class RequiredDependencyException(Exception):
pass
NEEDED_LIBS = [
"pangocairo-1.0",
"pango-1.0",
"gobject-2.0",
"glib-2.0",
"intl",
"harfbuzz",
"cairo",
"fontconfig",
]
class PKG_CONFIG:
"""Preform operations with pkg-config.
Parameters
==========
libname : :class:`str`
The library name to query.
"""
def __init__(self, libname: str) -> None:
self.name = libname
self.pkg_config = os.environ.get("PKG_CONFIG", "pkg-config")
self.setup_argparse()
self.check_pkgconfig = self.check_pkgconfig()
def check_pkgconfig(self):
"""Check whether pkg-config works.
If it doesn't work raise a warning.
"""
try:
check_call([self.pkg_config, "--version"], stdout=subprocess.DEVNULL)
return True
except Exception:
warnings.warn(
f"{self.pkg_config} doesn't exists or doesn't seem to work\n"
"We assume that you give the compiler flags using\n"
"corresponding environment variables.",
RuntimeWarning,
)
return False
def parse_cflags(self, raw_cflags):
"""Parse the flags from pkg-config using argparse."""
raw_args = shlex.split(raw_cflags.strip())
args, unknown = self._cflag_parser.parse_known_args(raw_args)
config = {k: v or [] for k, v in args.__dict__.items()}
for i, x in enumerate(config["define_macros"]):
parts = x.split("=", 1)
value = x[1] or None if len(x) == 2 else None
config["define_macros"][i] = (parts[0], value)
return config, " ".join(quote(x) for x in unknown)
def setup_argparse(self):
_cflag_parser = argparse.ArgumentParser(add_help=False)
_cflag_parser.add_argument("-I", dest="include_dirs", action="append")
_cflag_parser.add_argument("-L", dest="library_dirs", action="append")
_cflag_parser.add_argument("-l", dest="libraries", action="append")
_cflag_parser.add_argument("-D", dest="define_macros", action="append")
_cflag_parser.add_argument("-R", dest="runtime_library_dirs", action="append")
self._cflag_parser = _cflag_parser
def check_min_version(self, version):
"""Check whether the library of that version exists."""
command = [
self.pkg_config,
"--print-errors",
"--atleast-version",
version,
self.name,
]
try:
check_call(command, stdout=subprocess.DEVNULL)
return True
except Exception:
raise RequiredDependencyException(f"{self.name} >= {version} is required")
@property
def libs(self):
"""Get distutils-compatible extension extras for the given library.
This requires ``pkg-config``.
"""
if self.check_pkgconfig:
name = self.name
command = self.pkg_config
try:
proc = Popen(
[command, "--libs", name],
stdout=PIPE,
stderr=PIPE,
)
except Exception:
pass
raw_libs, _ = proc.communicate()
known_libs, unknown_libs = self.parse_cflags(raw_libs.decode("utf8"))
if unknown_libs:
known_libs["extra_link_args"] = unknown_libs.split()
return known_libs
return dict()
@property
def cflags(self):
if self.check_pkgconfig:
name = self.name
command = self.pkg_config
try:
proc = Popen(
[command, "--cflags", name],
stdout=PIPE,
stderr=PIPE,
)
except Exception:
pass
raw_cflags, _ = proc.communicate()
known_cflags, unknown_cflags = self.parse_cflags(raw_cflags.decode("utf8"))
if unknown_cflags:
known_cflags["extra_compile_args"] = unknown_cflags.split()
return known_cflags
return dict()
@property
def setuptools_args(self):
return update_dict(self.libs, self.cflags)
def update_dict(dict1: dict, dict2: dict):
for key in dict1:
if key in dict2:
dict2[key] = dict1[key] + dict2[key]
else:
dict2[key] = dict1[key]
return dict2
ext = ".pyx" if USE_CYTHON else ".c"
base_file = Path(__file__).parent / "manimpango"
_pkg_config_pangocairo = PKG_CONFIG("pangocairo")
_pkg_config_fontconfig = PKG_CONFIG("pangofc")
if _pkg_config_pangocairo.check_pkgconfig:
_pkg_config_pangocairo.check_min_version(MINIMUM_PANGO_VERSION)
returns = update_dict(
_pkg_config_pangocairo.setuptools_args, _pkg_config_fontconfig.setuptools_args
)
else:
returns = {}
returns["libraries"] = NEEDED_LIBS
if sys.platform == "win32":
_pkg_config_pangowin32 = PKG_CONFIG("pangowin32")
returns = update_dict(returns, _pkg_config_pangowin32.setuptools_args)
returns["libraries"] += ["Gdi32", "User32", "Advapi32", "Shell32", "Ole32"]
if not sysconfig.get_platform().startswith("mingw"): # MSVC compilers
returns["libraries"] = list(
set(returns["libraries"]).difference(IGNORE_LIBS_WIN)
)
returns["extra_compile_args"] = ["-DCAIRO_WIN32_STATIC_BUILD"]
if hasattr(returns, "define_macros"):
returns["define_macros"] += [("UNICODE", 1)]
else:
returns["define_macros"] = [("UNICODE", 1)]
if coverage:
returns["define_macros"] += [("CYTHON_TRACE", 1)]
returns["define_macros"] += [("CYTHON_TRACE_NOGIL", 1)]
ext_modules = [
Extension(
"manimpango.cmanimpango",
[str(base_file / ("cmanimpango" + ext))],
**returns,
),
Extension(
"manimpango.enums",
[str(base_file / ("enums" + ext))],
**returns,
),
Extension(
"manimpango._register_font",
[str(base_file / ("_register_font" + ext))],
**returns,
),
]
if USE_CYTHON:
ext_modules = cythonize(
ext_modules,
language_level=3,
include_path=["manimpango"],
gdb_debug=DEBUG,
compiler_directives={"linetrace": coverage},
)
with open("README.md") as fh:
long_description = fh.read()
setup(
name=NAME,
version=MANIMPANGO_VERSION,
author="Naveen M K",
author_email="naveen@manim.community",
maintainer="The Manim Community Developers",
url="https://manimpango.manim.community/",
description="Bindings for Pango for using with Manim.",
long_description=long_description,
zip_safe=False,
long_description_content_type="text/markdown",
packages=["manimpango"],
python_requires=">=3.8",
platforms=["Linux", "macOS", "Windows"],
keywords=["cython", "pango", "cairo", "manim"],
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Programming Language :: Cython",
],
project_urls={
"Documentation": "https://manimpango.manim.community/",
"Source": "https://github.com/ManimCommunity/manimpango",
"Release notes": "https://github.com/ManimCommunity/ManimPango/releases/",
},
ext_modules=ext_modules,
package_data={
"manimpango": ["*.pxd", "*.pyx"],
},
)