Metadata-Version: 1.1
Name: lambda-setuptools
Version: 0.1.0
Summary: A Command extension to setuptools that allows building an AWS Lamba dist
Home-page: https://github.com/illumicare/setuptools-lambda-dist-extension
Author: Joseph Wortmann
Author-email: joseph.wortmann@gmail.com
License: APL 2.0
Description: # setuptools-lambda-dist-extension
        ####A Command extension to setuptools that builds an AWS Lambda compatible zip file
        
        Use is simple:
        
        1. Add this **setup_requires=['lambda_setuptools']** as an attribute to your _setup.py_ file
        2. Call **python setup.py _ldist_**
            * This will build (using bdist_wheel) and install your package, along with all of the dependencies in _install_requires_
            * Zip the result up into an AWS Lambda compatible format
                * The result will be in _dist/[your-package-name]-lambda-[version].zip_ (along with your wheel)
        
        Note that all other commands and attributes in setup.py will still work the way you expect them to.
        
        Enjoy!
        
        
Keywords: setuptools extension
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
