├── .codecov.yml ├── .coveragerc ├── .gitignore ├── .pyup.yml ├── .travis.yml ├── .travis ├── after_success.sh ├── before_deploy.sh ├── before_install.sh ├── install.sh └── run.sh ├── LICENSE.txt ├── Lib └── fontPens │ ├── __init__.py │ ├── angledMarginPen.py │ ├── digestPointPen.py │ ├── flattenPen.py │ ├── guessSmoothPointPen.py │ ├── marginPen.py │ ├── penTools.py │ ├── printPen.py │ ├── printPointPen.py │ ├── recordingPointPen.py │ ├── spikePen.py │ ├── thresholdPen.py │ ├── thresholdPointPen.py │ └── transformPointPen.py ├── MANIFEST.in ├── README.rst ├── dev-requirements.txt ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py └── tox.ini /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/.gitignore -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/.pyup.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/after_success.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/.travis/after_success.sh -------------------------------------------------------------------------------- /.travis/before_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/.travis/before_deploy.sh -------------------------------------------------------------------------------- /.travis/before_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/.travis/before_install.sh -------------------------------------------------------------------------------- /.travis/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/.travis/install.sh -------------------------------------------------------------------------------- /.travis/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/.travis/run.sh -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Lib/fontPens/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.5.dev0" 2 | -------------------------------------------------------------------------------- /Lib/fontPens/angledMarginPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/angledMarginPen.py -------------------------------------------------------------------------------- /Lib/fontPens/digestPointPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/digestPointPen.py -------------------------------------------------------------------------------- /Lib/fontPens/flattenPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/flattenPen.py -------------------------------------------------------------------------------- /Lib/fontPens/guessSmoothPointPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/guessSmoothPointPen.py -------------------------------------------------------------------------------- /Lib/fontPens/marginPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/marginPen.py -------------------------------------------------------------------------------- /Lib/fontPens/penTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/penTools.py -------------------------------------------------------------------------------- /Lib/fontPens/printPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/printPen.py -------------------------------------------------------------------------------- /Lib/fontPens/printPointPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/printPointPen.py -------------------------------------------------------------------------------- /Lib/fontPens/recordingPointPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/recordingPointPen.py -------------------------------------------------------------------------------- /Lib/fontPens/spikePen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/spikePen.py -------------------------------------------------------------------------------- /Lib/fontPens/thresholdPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/thresholdPen.py -------------------------------------------------------------------------------- /Lib/fontPens/thresholdPointPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/thresholdPointPen.py -------------------------------------------------------------------------------- /Lib/fontPens/transformPointPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/Lib/fontPens/transformPointPen.py -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest>=3.0 2 | tox>=2.5 3 | fontParts>=0.8.4 4 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | FontTools>=3.32.0 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/fontPens/HEAD/tox.ini --------------------------------------------------------------------------------