add boto to install requires
This commit is contained in:
parent
dc9677e323
commit
024624045f
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,4 @@
|
|||||||
|
moto.egg-info/*
|
||||||
|
dist/*
|
||||||
.coverage
|
.coverage
|
||||||
*.pyc
|
*.pyc
|
||||||
|
7
setup.py
7
setup.py
@ -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"
|
||||||
|
],
|
||||||
)
|
)
|
Loading…
Reference in New Issue
Block a user