├── .flake8 ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── pypi-publish.yml │ └── python-package.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── README_en.md └── README_zh.md ├── mplfonts ├── __init__.py ├── bin │ ├── __init__.py │ └── cli.py ├── conf.py ├── fonts │ ├── NotoSansCJKsc-Regular.otf │ ├── NotoSansMonoCJKsc-Regular.otf │ ├── NotoSerifCJKsc-Regular.otf │ ├── SimHei.ttf │ ├── SourceHanMonoSC-Regular.otf │ └── SourceHanSerifSC-Regular.otf ├── rc │ └── matplotlibrc └── util │ ├── __init__.py │ ├── common.py │ └── manage.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── setup.py └── tests ├── case ├── Noto_Sans_CJK_SC.png ├── Noto_Sans_Mono_CJK_SC.png ├── Noto_Serif_CJK_SC.png ├── SimHei.png ├── Source_Han_Mono_SC.png └── Source_Han_Serif_SC.png └── test_chinese.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [Clarmy] 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/.github/workflows/pypi-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/README.md -------------------------------------------------------------------------------- /docs/README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/docs/README_en.md -------------------------------------------------------------------------------- /docs/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/docs/README_zh.md -------------------------------------------------------------------------------- /mplfonts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/__init__.py -------------------------------------------------------------------------------- /mplfonts/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mplfonts/bin/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/bin/cli.py -------------------------------------------------------------------------------- /mplfonts/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/conf.py -------------------------------------------------------------------------------- /mplfonts/fonts/NotoSansCJKsc-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/fonts/NotoSansCJKsc-Regular.otf -------------------------------------------------------------------------------- /mplfonts/fonts/NotoSansMonoCJKsc-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/fonts/NotoSansMonoCJKsc-Regular.otf -------------------------------------------------------------------------------- /mplfonts/fonts/NotoSerifCJKsc-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/fonts/NotoSerifCJKsc-Regular.otf -------------------------------------------------------------------------------- /mplfonts/fonts/SimHei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/fonts/SimHei.ttf -------------------------------------------------------------------------------- /mplfonts/fonts/SourceHanMonoSC-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/fonts/SourceHanMonoSC-Regular.otf -------------------------------------------------------------------------------- /mplfonts/fonts/SourceHanSerifSC-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/fonts/SourceHanSerifSC-Regular.otf -------------------------------------------------------------------------------- /mplfonts/rc/matplotlibrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/rc/matplotlibrc -------------------------------------------------------------------------------- /mplfonts/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mplfonts/util/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/util/common.py -------------------------------------------------------------------------------- /mplfonts/util/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/mplfonts/util/manage.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fire>=0.4.0 2 | fontmeta>=1.6.1 3 | matplotlib>=3.4 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/setup.py -------------------------------------------------------------------------------- /tests/case/Noto_Sans_CJK_SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/tests/case/Noto_Sans_CJK_SC.png -------------------------------------------------------------------------------- /tests/case/Noto_Sans_Mono_CJK_SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/tests/case/Noto_Sans_Mono_CJK_SC.png -------------------------------------------------------------------------------- /tests/case/Noto_Serif_CJK_SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/tests/case/Noto_Serif_CJK_SC.png -------------------------------------------------------------------------------- /tests/case/SimHei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/tests/case/SimHei.png -------------------------------------------------------------------------------- /tests/case/Source_Han_Mono_SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/tests/case/Source_Han_Mono_SC.png -------------------------------------------------------------------------------- /tests/case/Source_Han_Serif_SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/tests/case/Source_Han_Serif_SC.png -------------------------------------------------------------------------------- /tests/test_chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/mplfonts/HEAD/tests/test_chinese.py --------------------------------------------------------------------------------