Metadata-Version: 2.1
Name: hellbox-fontmake
Version: 0.1.0
Summary: fontmake job for hellbox.
Home-page: http://github.com/hellboxpy/hellbox-fontmake
Author: Jack Jennings
Author-email: jack@standard-library.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Plugins
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: hellbox
Requires-Dist: fontmake


hellbox-fontmake
================

A hellbox job that wraps [`fontmake`](https://github.com/googlei18n/fontmake) functionality in a chute.

* `GenerateOtf` — converts a UFO into an OTF
* `GenerateTtf` — converts a UFO into an TTF

```python
from hellbox.job.fontmake import GenerateOtf, GenerateTtf

with Hellbox("build") as task:
    source = task.read("*.ufo")
    source >> GenerateOtf() >> task.write("./build/otf")
    source >> GenerateTtf() >> task.write("./build/ttf")
```

Development
-----------

```shell
$ pip install -e .
$ pytest
```

Contributing
------------

To come...

