Metadata-Version: 1.1
Name: boil
Version: 0.1.0
Summary: Jinja2 compile tools for building static web site
Home-page: https://github.com/lambdalisue/boil
Author: Alisue
Author-email: lambdalisue@hashnote.net
License: MIT
Download-URL: https://github.com/lambdalisue/boil/tarball/master
Description: boil -- A static Web build tool.
        ===============================================================================
        
        boil is a tool for building static WEB powered by Jinja2.
        
        Install
        -------------------------------------------------------------------------------
        Use pip or easy_install like
        
          pip install boil
        
        Usage
        -------------------------------------------------------------------------------
        
        1.  Create `boil.yaml` as below
        
              source_directory: template
              destination_directory: www
              patterns:
                *.html
              ignore_patterns:
                base.html
                *_base.html
              ignore_directories: False
              case_sensitive: False
              verbose: True
              watch: True
        
        2.  Create Jinja2 template in `template` directory
        3.  Run `boil` in root directory
        
        
Keywords: Jinja2,static,web
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
