basic ec2 and s3 working

This commit is contained in:
Steve Pulec 2013-02-18 16:09:40 -05:00
commit 77d6df6531
33 changed files with 561 additions and 1 deletions

14
setup.py Normal file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
setup(
name='moto',
version='0.0.1',
description='Moto is a library that allows your python tests to easily mock out the boto library',
author='Steve Pulec',
author_email='spulec@gmail',
url='https://github.com/spulec/moto',
packages=find_packages()
)