Metadata-Version: 1.1
Name: lambda-packages
Version: 0.2.1
Summary: AWS Lambda Packages
Home-page: https://github.com/Miserlou/lambda-packages
Author: Rich Jones
Author-email: rich@openwatch.net
License: MIT License
Description: lambda-packages |Build Status| |Slack|
        ======================================
        
        Various popular libraries, pre-compiled to be compatible with AWS
        Lambda.
        
        Currently includes support for:
        
        -  MySQL-Python
        -  psycopg2
        
        Installation
        ------------
        
        ::
        
            pip install lambda-packages
        
        Usage
        -----
        
        **lambda-packages** also includes a manifest with information about the
        included packages and the paths to their binaries.
        
        .. code:: python
        
            from lambda_packages import lambda_packages
        
            print lambda_packages['psycopg2']['version'] 
            # 2.6.1
            print lambda_packages['psycopg2']['path'] 
            # /home/YourUsername/.venvs/lambda_packages/psycopg2/psycopg2-2.6.1.tar.gz
        
        Contributing
        ------------
        
        To add support for more packages, send a pull request containing a
        gzipped tarball of the package (build on Amazon Linux and tested on AWS
        Lambda) in the appropriate directory and an updated manifest.
        
        Useful targets include:
        
        -  MongoEngine
        -  pandas
        -  PIL
        -  scipy
        
        .. |Build Status| image:: https://travis-ci.org/Miserlou/lambda-packages.svg
           :target: https://travis-ci.org/Miserlou/lambda-packages
        .. |Slack| image:: https://img.shields.io/badge/chat-slack-ff69b4.svg
           :target: https://slackautoinviter.herokuapp.com/
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
