diff --git a/.gitignore b/.gitignore index b04e81aaf..113b41964 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ +moto.egg-info/* +dist/* .coverage *.pyc diff --git a/setup.py b/setup.py index 4bfde779e..cfb1dd60d 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,13 @@ from setuptools import setup, find_packages setup( name='moto', - version='0.0.1', + version='0.0.2', 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() + packages=find_packages(), + install_requires=[ + "boto" + ], ) \ No newline at end of file