Metadata-Version: 1.1
Name: static
Version: 1.1.1
Summary: Serve static or templated content via WSGI or stand-alone.
Home-page: http://github.com/lukearno/static
Author: Luke Arno
Author-email: luke.arno@gmail.com
License: MIT
Description: # static
        
        Serve static or templated content via WSGI or stand-alone.
        
        Install Static
        
            $ pip install static
        
        Serve up some content:
        
            $ static localhost 9999 static-content/
        
        Or in the context of a WSGI application:
        
        ```python
        import static
        wsgi_app = static.Cling('/var/www')
        ```
        
        You can also use Python template strings, Moustache templates or 
        easily roll your own templating plugin. See the tests and source
        code for examples.
        
        Pull requests welcome. Happy hacking.
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
