python-fontbro 0.25.0__tar.gz → 0.26.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_fontbro-0.25.0/python_fontbro.egg-info → python_fontbro-0.26.1}/PKG-INFO +4 -4
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/README.md +0 -1
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/data/features.json +607 -13
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/data/unicode-blocks.json +32 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/data/unicode-scripts.json +30 -10
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/font.py +44 -2
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/metadata.py +1 -1
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/pyproject.toml +3 -2
- {python_fontbro-0.25.0 → python_fontbro-0.26.1/python_fontbro.egg-info}/PKG-INFO +4 -4
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/python_fontbro.egg-info/requires.txt +2 -2
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_close.py +1 -1
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_context_manager.py +1 -1
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_fingerprint.py +1 -1
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_str.py +2 -2
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_unicode_blocks_and_scripts.py +8 -8
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/LICENSE.txt +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/MANIFEST.in +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/__init__.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/data/family-classifications.json +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/exceptions.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/flags.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/math.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/py.typed +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/subset.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/fontbro/utils.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/python_fontbro.egg-info/SOURCES.txt +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/python_fontbro.egg-info/dependency_links.txt +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/python_fontbro.egg-info/top_level.txt +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/setup.cfg +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/setup.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_characters.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_clone.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_collection.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_color.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_family_classification.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_family_name.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_features.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_filename.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_format.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_glyphs.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_image.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_init.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_instantiation.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_issues.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_italic_angle.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_monospace.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_names.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_rename.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_sanitize.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_save.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_style_flags.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_style_name.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_subset.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_svg.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_update_unicode_data.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_variable.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_version.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_vertical_metrics.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_weight.py +0 -0
- {python_fontbro-0.25.0 → python_fontbro-0.26.1}/tests/test_width.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-fontbro
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.26.1
|
|
4
4
|
Summary: friendly font operations on top of fontTools.
|
|
5
5
|
Author-email: Fabio Caccamo <fabio.caccamo@gmail.com>
|
|
6
6
|
Maintainer-email: Fabio Caccamo <fabio.caccamo@gmail.com>
|
|
@@ -47,6 +47,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
47
47
|
Classifier: Programming Language :: Python :: 3.11
|
|
48
48
|
Classifier: Programming Language :: Python :: 3.12
|
|
49
49
|
Classifier: Programming Language :: Python :: 3.13
|
|
50
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
50
51
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
51
52
|
Classifier: Topic :: Text Processing :: Fonts
|
|
52
53
|
Classifier: Topic :: Multimedia :: Graphics
|
|
@@ -56,8 +57,8 @@ License-File: LICENSE.txt
|
|
|
56
57
|
Requires-Dist: fonttools[lxml,pathops,unicode,woff]<5.0,>=4.43.0
|
|
57
58
|
Requires-Dist: imagehash<5.0.0,>=4.2.1
|
|
58
59
|
Requires-Dist: opentype-sanitizer<10.0.0,>=9.1.0
|
|
59
|
-
Requires-Dist: pillow<
|
|
60
|
-
Requires-Dist: python-fsutil<1.0.0,>=0.
|
|
60
|
+
Requires-Dist: pillow<13.0.0,>=8.4.0
|
|
61
|
+
Requires-Dist: python-fsutil<1.0.0,>=0.16.0
|
|
61
62
|
Dynamic: license-file
|
|
62
63
|
|
|
63
64
|
[](https://www.python.org/)
|
|
@@ -70,7 +71,6 @@ Dynamic: license-file
|
|
|
70
71
|
[](https://github.com/fabiocaccamo/python-fontbro)
|
|
71
72
|
[](https://codecov.io/gh/fabiocaccamo/python-fontbro)
|
|
72
73
|
[](https://www.codacy.com/app/fabiocaccamo/python-fontbro)
|
|
73
|
-
[](https://codeclimate.com/github/fabiocaccamo/python-fontbro/)
|
|
74
74
|
[](https://github.com/psf/black)
|
|
75
75
|
[](https://github.com/astral-sh/ruff)
|
|
76
76
|
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
[](https://github.com/fabiocaccamo/python-fontbro)
|
|
9
9
|
[](https://codecov.io/gh/fabiocaccamo/python-fontbro)
|
|
10
10
|
[](https://www.codacy.com/app/fabiocaccamo/python-fontbro)
|
|
11
|
-
[](https://codeclimate.com/github/fabiocaccamo/python-fontbro/)
|
|
12
11
|
[](https://github.com/psf/black)
|
|
13
12
|
[](https://github.com/astral-sh/ruff)
|
|
14
13
|
|