basic ec2 and s3 working
This commit is contained in:
parent
6a060dfd7e
commit
77d6df6531
33 changed files with 561 additions and 1 deletions
14
setup.py
Normal file
14
setup.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import sys
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='moto',
|
||||
version='0.0.1',
|
||||
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()
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue