Metadata-Version: 1.1
Name: FontReducer
Version: 0.0.1
Summary: Generate font subsets
Home-page: https://github.com/hachibeeDI/FontReducer
Author: OGURA_Daiki
Author-email: 8hachibee125@gmail.com
License: Copyright 2015 OGURA_Daiki


   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

   Credits

   3846masa [https://github.com/3846masa]
Description: # FontReducer
        
        reduce font size
        
        ## Install
        
        ```sh
        $ pip install FontReducer
        ```
        
        ## Usage
        
        ```sh
        $ cat WORDS_TO_REDUCE.txt | fontreducer PATH_TO_FILE PATH_TO_OUTPUT
        ```
        
        For example, You can use in gulp task.
        
        ```coffee
        shell   = require 'gulp-shell'
        
        gulp.task 'font:gen_subsets', shell.task [
          'some_nice_grepping_script > words.txt'
          'cat words.txt | fontreducer src/font/some_nice_font.otf dist/some_nice_font.otf'
          'rm words.txt'
        ]
        ```
        
        ## Inspired
        
        https://github.com/3846masa/japont
        
        japont is Dynamic Subsetting System for Japanese fonts.
        Very Easy to try on Heroku.
Keywords: fontforge
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
