Metadata-Version: 1.0
Name: gae-virtualenv
Version: 0.0.1
Summary: Using virtualenv with zipimport on Google App Engine
Home-page: http://bitbucket.org/imbolc/gae-virtualenv/
Author: Imbolc
Author-email: imbolc@imbolc.name
License: BSD
Description: ==============
        gae-virtualenv
        ==============
        
        Using virtualenv with zipimport on Google App Engine.
        
        
        Installation
        ============
        
        Copy build dir to you gae application root directory.
        
        
        Usage
        =====
        
        1. Edit build/pipreq.txt and run: 
        ::
        
            $ cd build
            $ ./buildenv.sh
            $ python ziping.py
            
        2. Modify the load path at the top of each handler script:
        ::
        
            import sys
            sys.path.insert(0, 'virtualenv.zip')
        
        3. Add build directory to skip_files in app.yaml
        ::
        
            skip_files:
                - ^(.*/)?build/.*
Keywords: gae,appengine,virtualenv,zipimport
Platform: UNKNOWN
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: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
