Metadata-Version: 1.1
Name: fount
Version: 0.1.0
Summary: Fount -- Web Framework for Live Server Pages
Home-page: http://www.grantjenks.com/docs/fount/
Author: Grant Jenks
Author-email: contact@grantjenks.com
License: Apache 2.0
Description: Fount
        =====
        
        `Fount`_ is an Apache2 licensed `Python web framework`_ for creating
        single-page applications.
        
        .. todo::
        
           - Embrace idea of components: web page can connect multiple components to
             different endpoints (micro-services!)
           - Support Django Channels, aiohttp, and others.
           - Support rendering as HTML for initial-load and fallback.
        
        Testimonials
        ------------
        
        Does your website or company use `Fount`_? Send us a `message
        <contact@grantjenks.com>`_ and let us know.
        
        Features
        --------
        
        - Pure-Python
        - Developed on Python 3.7
        
        .. todo::
        
           - Fully documented
           - 100% test coverage
           - Used in production at ???
           - Tested on CPython 3.5, 3.6, 3.7 and PyPy3
        
           .. image:: https://api.travis-ci.org/grantjenks/python-fount.svg?branch=master
              :target: http://www.grantjenks.com/docs/fount/
        
           .. image:: https://ci.appveyor.com/api/projects/status/github/grantjenks/python-fount?branch=master&svg=true
              :target: http://www.grantjenks.com/docs/fount/
        
        Quickstart
        ----------
        
        Installing `Fount`_ is simple with `pip
        <https://pypi.org/project/pip/>`_::
        
            $ pip install fount
        
        You can access documentation in the interpreter with Python's built-in `help`
        function. The `help` works on modules, classes and methods in `Fount`_.
        
        .. code-block:: python
        
            >>> import fount
            >>> help(fount)
        
        User Guide
        ----------
        
        .. todo::
        
           - Tutorial
           - API Reference
           - Case Study: Chat
           - Development
        
        References
        ----------
        
        - `Fount Documentation`_
        - `Fount at PyPI`_
        - `Fount at Github`_
        - `Fount Issue Tracker`_
        
        .. _`Fount Documentation`: http://www.grantjenks.com/docs/fount/
        .. _`Fount at PyPI`: https://pypi.org/project/fount/
        .. _`Fount at Github`: https://github.com/grantjenks/python-fount
        .. _`Fount Issue Tracker`: https://github.com/grantjenks/python-fount/issues
        
        Fount License
        -------------
        
        Copyright 2019 Grant Jenks
        
        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.
        
        .. _`Fount`: http://www.grantjenks.com/docs/fount/
        .. _`Python web framework`: http://www.grantjenks.com/docs/fount/
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
