Metadata-Version: 1.1
Name: minchin.pelican.plugins.cname
Version: 1.0.3
Summary: Pelican plugin that adds a `CNAME` file to the output root. Useful for publishing to Github Pages. Written in Python.
Home-page: https://github.com/MinchinWeb/minchin.pelican.plugins.cname
Author: W. Minchin
Author-email: w_minchin@hotmail.com
License: UNKNOWN
Description: =====
        CName
        =====
        
        ``CName`` is a plugin for `Pelican <http://docs.getpelican.com/>`_,
        a static site generator written in Python.
        
        ``CName`` creates a *CNAME* file in the root of your output directory. This
        is useful when you are publishing your site to
        `GitHub Pages <https://pages.github.com/>`_ on a
        `custom domain <https://help.github.com/articles/using-a-custom-domain-with-github-pages/>`_.
        
        
        Installation
        ============
        
        The easiest way to install ``CName`` is through the use of pip. This
        will also install the required dependencies automatically.
        
        .. code-block:: sh
        
          pip install minchin.pelican.plugins.cname
        
        Then, in your ``pelicanconf.py`` file, add ``CName`` to your list of
        plugins:
        
        .. code-block:: python
        
          PLUGINS = [
                      # ...
                      'minchin.pelican.plugins.cname',
                      # ...
                    ]
        
        And that's it! No further configuration is needed.
        
        
        Usage
        =====
        
        No configuration is needed. The value places in the *CNAME* files is based
        on your ``SITEURL`` setting.
        
        
        Credits
        =======
        
        Based on the `original code <https://github.com/getpelican/pelican-plugins/pull/566>`_
        by `Dmitriy Kalinin <http://lazycoder.ru/>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: Pelican :: Plugins
