Metadata-Version: 2.1
Name: hellbox-dsig
Version: 0.1.0
Summary: DSIG-related job for hellbox.
Home-page: http://github.com/hellboxpy/hellbox-dsig
Author: Jack Jennings
Author-email: jack@standard-library.com
License: MIT
Description: 
        hellbox-dsig
        ============
        
        A hellbox job that works with [digital signature tables](https://docs.microsoft.com/en-us/typography/opentype/spec/dsig).
        
        * `InsertDummyDsig` — adds a valid digital signature table to an OTF/TTF font file.
        
        ```python
        from hellbox.jobs.dsig import InsertDummyDsig
        
        with Hellbox("build") as task:
            source = task.read("./source/*.otf")
            source >> InsertDummyDsig() >> task.write("./build/otf")
        ```
        
        Installation
        ------------
        
        Using the [hell CLI](https://github.com/hellboxpy/hell#installation):
        
        ```shell
        $ hell install hellbox-dsig
        ```
        
        Development
        -----------
        
        ```shell
        $ pip install -e .
        $ pytest
        ```
        
        Contributing
        ------------
        
        To come...
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
