Metadata-Version: 1.1
Name: sphinxcontrib-rawfiles
Version: 0.1.1
Summary: Sphinx "rawfiles" extension
Home-page: http://bitbucket.org/birkenfeld/sphinx-contrib
Author: Takumi IINO
Author-email: trot.thunder@gmail.com
License: BSD
Download-URL: http://pypi.python.org/pypi/sphinxcontrib-rawfiles
Description-Content-Type: UNKNOWN
Description: rawfiles extension README
        =========================
        Copy raw files, like a CNAME.
        
        Setting
        =======
        .. You can see available package at `PyPI <http://pypi.python.org/pypi/sphinxcontrib-rawfiles>`_.
        
        You can get archive file at http://bitbucket.org/birkenfeld/sphinx-contrib/
        
        Install
        -------
        
        ::
        
           > easy_install sphinxcontrib-rawfiles
        
        Configure Sphinx
        ----------------
        To enable this extension, add ``sphinxcontrib.rawfiles`` module to extensions
        option at `conf.py` and add .
        
        ::
        
           import os, sys
        
           # Path to the folder where rawfiles.py is
           # NOTE: not needed if the package is installed in traditional way
           # using setup.py or easy_install
           sys.path.append(os.path.abspath('/path/to/sphinxcontrib.rawfiles'))
        
           # Enabled extensions
           extensions = ['sphinxcontrib.rawfiles']
        
           # Files you want to copy
           rawfiles = ['CNAME']
        
        Repository
        ==========
        This code is hosted by Bitbucket.
        
          http://bitbucket.org/birkenfeld/sphinx-contrib/
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Documentation
Classifier: Topic :: Utilities
