moto/setup.py

14 lines
358 B
Python
Raw Normal View History

2013-02-18 21:09:40 +00:00
#!/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()
)