Metadata-Version: 2.0
Name: lambda-setuptools
Version: 0.1.1
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
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
Requires-Dist: setuptools
Requires-Dist: wheel

# lambda-setuptools
####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!



