moto/setup.py

19 lines
424 B
Python
Raw Normal View History

2013-02-18 21:09:40 +00:00
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='moto',
2013-03-01 03:49:16 +00:00
version='0.0.6',
2013-02-26 05:12:34 +00:00
description='Moto is a library that allows your python tests to easily mock'
' out the boto library',
2013-02-18 21:09:40 +00:00
author='Steve Pulec',
author_email='spulec@gmail',
url='https://github.com/spulec/moto',
2013-02-26 04:56:41 +00:00
packages=find_packages(),
install_requires=[
2013-02-26 20:00:18 +00:00
"boto",
"Jinja2",
2013-02-26 04:56:41 +00:00
],
2013-02-26 05:12:34 +00:00
)