├── .gitignore ├── .readthedocs.yaml ├── Install.txt ├── Lib └── ufo2fdk │ ├── __init__.py │ ├── fdkBridge.py │ ├── featureTableWriter.py │ ├── fontInfoData.py │ ├── kernFeatureWriter.py │ ├── makeotfParts.py │ ├── outlineOTF.py │ └── pens │ ├── __init__.py │ ├── bezPen.py │ └── t2CharStringPen.py ├── License.txt ├── MANIFEST.in ├── README.md ├── documentation ├── Makefile ├── readme.txt └── source │ ├── autodoc │ ├── fdkBridge.rst │ ├── fontInfoData.rst │ ├── kernFeatureWriter.rst │ ├── makeotfParts.rst │ └── outlineOTF.rst │ ├── conf.py │ └── index.rst ├── pyproject.toml ├── requirements-rtd.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/Install.txt -------------------------------------------------------------------------------- /Lib/ufo2fdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/Lib/ufo2fdk/__init__.py -------------------------------------------------------------------------------- /Lib/ufo2fdk/fdkBridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/Lib/ufo2fdk/fdkBridge.py -------------------------------------------------------------------------------- /Lib/ufo2fdk/featureTableWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/Lib/ufo2fdk/featureTableWriter.py -------------------------------------------------------------------------------- /Lib/ufo2fdk/fontInfoData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/Lib/ufo2fdk/fontInfoData.py -------------------------------------------------------------------------------- /Lib/ufo2fdk/kernFeatureWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/Lib/ufo2fdk/kernFeatureWriter.py -------------------------------------------------------------------------------- /Lib/ufo2fdk/makeotfParts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/Lib/ufo2fdk/makeotfParts.py -------------------------------------------------------------------------------- /Lib/ufo2fdk/outlineOTF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/Lib/ufo2fdk/outlineOTF.py -------------------------------------------------------------------------------- /Lib/ufo2fdk/pens/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/Lib/ufo2fdk/pens/__init__.py -------------------------------------------------------------------------------- /Lib/ufo2fdk/pens/bezPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/Lib/ufo2fdk/pens/bezPen.py -------------------------------------------------------------------------------- /Lib/ufo2fdk/pens/t2CharStringPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/Lib/ufo2fdk/pens/t2CharStringPen.py -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/License.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/README.md -------------------------------------------------------------------------------- /documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/documentation/Makefile -------------------------------------------------------------------------------- /documentation/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/documentation/readme.txt -------------------------------------------------------------------------------- /documentation/source/autodoc/fdkBridge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/documentation/source/autodoc/fdkBridge.rst -------------------------------------------------------------------------------- /documentation/source/autodoc/fontInfoData.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/documentation/source/autodoc/fontInfoData.rst -------------------------------------------------------------------------------- /documentation/source/autodoc/kernFeatureWriter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/documentation/source/autodoc/kernFeatureWriter.rst -------------------------------------------------------------------------------- /documentation/source/autodoc/makeotfParts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/documentation/source/autodoc/makeotfParts.rst -------------------------------------------------------------------------------- /documentation/source/autodoc/outlineOTF.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/documentation/source/autodoc/outlineOTF.rst -------------------------------------------------------------------------------- /documentation/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/documentation/source/conf.py -------------------------------------------------------------------------------- /documentation/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/documentation/source/index.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-rtd.txt: -------------------------------------------------------------------------------- 1 | sphinx_rtd_theme -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/ufo2fdk/HEAD/setup.py --------------------------------------------------------------------------------