gpt4 book ai didi

python - 如何使用我的 python 包分发字体?

转载 作者:行者123 更新时间:2023-11-28 16:28:47 25 4
gpt4 key购买 nike

我创建了一个名为 clearplot 的包环绕 matplotlib。我还创建了一个漂亮的字体,我想将其与我的包一起分发。我咨询了this section Python 打包用户指南,并确定我应该使用 data_files 关键字。我选择了 data_files 而不是 package_data,因为我需要将字体安装在我的包外部 的 matplotlib 目录中。

这是我对 setup.py 文件的第一个有缺陷的尝试:

from distutils.core import setup
import os, sys
import matplotlib as mpl

#Find where matplotlib stores its True Type fonts
mpl_data_dir = os.path.dirname(mpl.matplotlib_fname())
mpl_ttf_dir = os.path.join(mpl_data_dir, 'fonts', 'ttf')

setup(
...(edited for brevity)...
install_requires = ['matplotlib >= 1.4.0, !=1.4.3', 'numpy >= 1.6'],
data_files = [
(mpl_ttf_dir, ['./font_files/TeXGyreHeros-txfonts/TeXGyreHerosTXfonts-Regular.ttf']),
(mpl_ttf_dir, ['./font_files/TeXGyreHeros-txfonts/TeXGyreHerosTXfonts-Italic.ttf'])]
)

#Try to delete matplotlib's fontList cache
mpl_cache_dir = mpl.get_cachedir()
mpl_cache_dir_ls = os.listdir(mpl_cache_dir)
if 'fontList.cache' in mpl_cache_dir_ls:
fontList_path = os.path.join(mpl_cache_dir, 'fontList.cache')
os.remove(fontList_path)

setup.py 有两个问题:

  1. 我尝试在 setup() 有机会安装之前导入 matplotlib。这是一个明显的错误,但在运行 setup() 之前,我需要知道 mpl_ttf_dir 的位置。
  2. 如前所述here , wheel 发行版不支持 data_files 的绝对路径。我不认为这会是个问题,因为我认为我只会使用 sdist 发行版。 (sdists 确实允许绝对路径。)然后我发现 pip 7.0(及更高版本)将所有包转换为 wheel 分布,即使该分布最初是作为 sdist 创建的。

我对问题 #2 非常恼火,但是从那时起,我发现绝对路径是不好的,因为它们不适用于 virtualenv。因此,我现在愿意改变我的做法,但我该怎么办?

我唯一的想法是首先将字体分发为 package_data,然后使用 os 模块将字体移动到正确的位置。这是犹太洁食方法吗?

最佳答案

感谢@benjaoming 的回答和this blog post ,这是我想出的:

from setuptools import setup
from setuptools.command.install import install
import warnings

#Set up the machinery to install custom fonts. Subclass the setup tools install
#class in order to run custom commands during installation.
class move_ttf(install):
def run(self):
"""
Performs the usual install process and then copies the True Type fonts
that come with clearplot into matplotlib's True Type font directory,
and deletes the matplotlib fontList.cache
"""
#Perform the usual install process
install.run(self)
#Try to install custom fonts
try:
import os, shutil
import matplotlib as mpl
import clearplot as cp

#Find where matplotlib stores its True Type fonts
mpl_data_dir = os.path.dirname(mpl.matplotlib_fname())
mpl_ttf_dir = os.path.join(mpl_data_dir, 'fonts', 'ttf')

#Copy the font files to matplotlib's True Type font directory
#(I originally tried to move the font files instead of copy them,
#but it did not seem to work, so I gave up.)
cp_ttf_dir = os.path.join(os.path.dirname(cp.__file__), 'true_type_fonts')
for file_name in os.listdir(cp_ttf_dir):
if file_name[-4:] == '.ttf':
old_path = os.path.join(cp_ttf_dir, file_name)
new_path = os.path.join(mpl_ttf_dir, file_name)
shutil.copyfile(old_path, new_path)
print "Copying " + old_path + " -> " + new_path

#Try to delete matplotlib's fontList cache
mpl_cache_dir = mpl.get_cachedir()
mpl_cache_dir_ls = os.listdir(mpl_cache_dir)
if 'fontList.cache' in mpl_cache_dir_ls:
fontList_path = os.path.join(mpl_cache_dir, 'fontList.cache')
os.remove(fontList_path)
print "Deleted the matplotlib fontList.cache"
except:
warnings.warn("WARNING: An issue occured while installing the custom fonts for clearplot.")

setup(...
#Specify the dependencies and versions
install_requires = ['matplotlib >= 1.4.0, !=1.4.3', 'numpy >= 1.6'],
#Specify any non-python files to be distributed with the package
package_data = {'' : ['color_maps/*.csv', 'true_type_fonts/*.ttf']},
#Specify the custom install class
cmdclass={'install' : move_ttf}
)

这解决了问题 #1(它在导入之前安装 matplotlib)和问题 #2(它适用于轮子)。

关于python - 如何使用我的 python 包分发字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34193900/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com