Skip to content

Commit

Permalink
add moto
Browse files Browse the repository at this point in the history
item from #7
  • Loading branch information
tomkinsc committed Oct 7, 2015
1 parent 6b5a415 commit 9edb414
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipes/moto/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"%PYTHON%" setup.py install
if errorlevel 1 exit 1
3 changes: 3 additions & 0 deletions recipes/moto/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

$PYTHON setup.py install
74 changes: 74 additions & 0 deletions recipes/moto/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
package:
name: moto
version: "0.4.14"

source:
fn: moto-0.4.14.tar.gz
url: https://pypi.python.org/packages/source/m/moto/moto-0.4.14.tar.gz
md5: ce791928c59c67d699aba6eb58b9e253

build:
entry_points:
- moto_server = moto.server:main

requirements:
build:
- python
- setuptools
- jinja2
- boto >=2.20.0
- flask
- httpretty >=0.6.1
- requests
- xmltodict
- six
- werkzeug

run:
- python
- jinja2
- boto >=2.20.0
- flask
- httpretty >=0.6.1
- requests
- xmltodict
- six
- werkzeug

test:
# Python imports
imports:
- moto
- moto.autoscaling
- moto.cloudformation
- moto.cloudwatch
- moto.core
- moto.datapipeline
- moto.dynamodb
- moto.dynamodb2
- moto.ec2
- moto.ec2.responses
- moto.elb
- moto.emr
- moto.glacier
- moto.iam
- moto.kinesis
- moto.kms
- moto.rds
- moto.rds2
- moto.redshift
- moto.route53
- moto.s3
- moto.s3bucket_path
- moto.ses
- moto.sns
- moto.sqs
- moto.sts

commands:
- moto_server --help

about:
home: https://github.com/spulec/moto
license: Apache Software License
summary: 'A library that allows your python tests to easily mock out the boto library'

0 comments on commit 9edb414

Please sign in to comment.