Metadata-Version: 1.1
Name: Showcase
Version: 0.3.4
Summary: Like SimpleHTTPServer, only worse
Home-page: UNKNOWN
Author: James Rutherford
Author-email: jim@jimr.org
License: UNKNOWN
Description: ========
        Showcase
        ========
        
        A slightly nicer, probably less secure version of ``python -m SimpleHTTPServer``.
        
        Installation
        ============
        
        ``pip install showcase``
        
        Usage
        =====
        
        Not for production use, etc. To browse the current folder with Showcase, run::
        
            FLASK_APP=showcase.app flask run
        
        or, using ``gunicorn``::
        
            gunicorn showcase:app -b 127.0.0.1:5000
        
        Once it's running, head to http://127.0.0.1:5000 and enjoy.
        
        To browse somewhere other than where you run it from, set the ``SHOWCASE_DIR`` environment variable::
        
            SHOWCASE_DIR=/path/to/somewhere/else gunicorn showcase:app -b 127.0.0.1:5000
        
        Developing
        ==========
        
        To run the tests: ``python setup.py test``.
        
        License
        =======
        
        See ``LICENSE.txt``.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
