2013-02-18 21:09:40 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='moto',
|
2013-07-28 21:01:49 +00:00
|
|
|
version='0.2.8',
|
2013-03-19 15:45:19 +00:00
|
|
|
description='A library that allows your python tests to easily'
|
2013-03-05 13:21:47 +00:00
|
|
|
' 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-03-05 13:14:43 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'moto_server = moto.server:main',
|
|
|
|
],
|
|
|
|
},
|
2013-02-26 04:56:41 +00:00
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
2013-02-26 20:00:18 +00:00
|
|
|
"boto",
|
2013-03-05 13:14:43 +00:00
|
|
|
"flask",
|
2013-06-04 21:30:32 +00:00
|
|
|
"httpretty>=0.6.1",
|
2013-05-03 23:33:13 +00:00
|
|
|
"Jinja2",
|
|
|
|
],
|
2013-02-26 05:12:34 +00:00
|
|
|
)
|