Metadata-Version: 1.1
Name: Cocopot
Version: 0.1
Summary: A microframework for python web development, more suitable for mobile service.
Home-page: http://github.com/zeaphoo/cocopot/
Author: zeaphoo
Author-email: zeaphoo@gmail.com
License: BSD
Download-URL: http://github.com/zeaphoo/cocopot/tarball/0.1
Description: 
        Cocopot
        ---------
        
        Cocopot is a microframework for Python. Foucus on mobile service and cloud service, no default template system.
        
        Cocopot is Fun
        ```````````````````````
        
        .. code:: python
        
            from cocopot import Cocopot
            app = Cocopot()
        
            @app.route("/")
            def hello():
                return "Hello World!"
        
            if __name__ == "__main__":
                app.run()
        
        And Easy to Setup
        ```````````````````````
        
        .. code:: bash
        
            $ pip install Cocopot
            $ python hello.py
             * Running on http://localhost:3000/
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
