Metadata-Version: 1.0
Name: pysmvt
Version: 0.2.1
Summary: A wsgi web framework with a pylons spirit and django modularity
Home-page: http://pypi.python.org/pypi/pysmvt/
Author: Randy Syring
Author-email: rsyring@gmail.com
License: BSD
Description: 
        Introduction
        ---------------
        
        pysmvt is a wsgi web framework library designed in the spirit of Pylons but with
        Django modularity (i.e. what they would call "apps").
        
        Steps for Installation
        ----------------------
        
        #. Install Python
        #. install setuptools (includes easy_install)
        #. install virtualenv `easy_install virtualenv`
        #. Create a new virtual environement `virtualenv pysmvttest-venv --no-site-packages`
        #. `Activate the virtual environment (os dependent) <http://pypi.python.org/pypi/virtualenv#activate-script>`_
        #. install pysmvt & dependencies `easy_install pysmvt` or `pip install pysmvt`
        
        Steps for creating a working application
        -----------------------------------------
        #. `cd pysmvttest-venv`
        #. `mkdir src`
        #. `cd src`
        #. `pysmvt project myapp`
        #. answer the questions that come up.  Note what you put for
        "Enter author (your name)" as <user>.  If you forget, look in myapp/settings.py.
        #. `cd myapp-dist`
        #. `python setup.py -q develop`
        #.  `nosetests` you should get three succesful tests
        #. `cd myapp`
        #. `pysmvt serve <user>` run a development http server with the user's settings
        profile
        #. point your browser at http://localhost:5000/
        
        Creating a New Application Module
        ---------------------------------
        This step creates a Application Module directory structure in myapp/modules/<mymod>:
        
        `pysmvt module <mymod>`
        
        where <mymod> is the name of the module you want to create
        
        Questions & Comments
        ---------------------
        
        Please visit: http://groups.google.com/group/pyslibs
        
        Current Status
        ---------------
        
        The code stays pretty stable, but the API is likely to change in the future.
        
        The `pysmvt tip <http://bitbucket.org/rsyring/pysmvt/get/tip.zip#egg=pysmvt-dev>`_
        is installable via `easy_install` with ``easy_install pysmvt==dev``
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
