add boto to install requires

This commit is contained in:
Steve Pulec 2013-02-25 23:56:41 -05:00
parent dc9677e323
commit 024624045f
2 changed files with 7 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,2 +1,4 @@
moto.egg-info/*
dist/*
.coverage .coverage
*.pyc *.pyc

View File

@ -5,10 +5,13 @@ from setuptools import setup, find_packages
setup( setup(
name='moto', 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', description='Moto is a library that allows your python tests to easily mock out the boto library',
author='Steve Pulec', author='Steve Pulec',
author_email='spulec@gmail', author_email='spulec@gmail',
url='https://github.com/spulec/moto', url='https://github.com/spulec/moto',
packages=find_packages() packages=find_packages(),
install_requires=[
"boto"
],
) )