Adding server mode
This commit is contained in:
parent
c6f5afff75
commit
a728b2581a
31 changed files with 489 additions and 66 deletions
8
setup.py
8
setup.py
|
|
@ -6,13 +6,19 @@ setup(
|
|||
name='moto',
|
||||
version='0.0.6',
|
||||
description='Moto is a library that allows your python tests to easily mock'
|
||||
' out the boto library',
|
||||
' out the boto library',
|
||||
author='Steve Pulec',
|
||||
author_email='spulec@gmail',
|
||||
url='https://github.com/spulec/moto',
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'moto_server = moto.server:main',
|
||||
],
|
||||
},
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
"boto",
|
||||
"Jinja2",
|
||||
"flask",
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue