2013-02-18 16:09:40 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2013-10-03 20:34:13 -04:00
|
|
|
install_requires = [
|
|
|
|
"boto",
|
|
|
|
"flask",
|
|
|
|
"httpretty>=0.6.1",
|
|
|
|
"Jinja2",
|
|
|
|
]
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
if sys.version_info < (2, 7):
|
|
|
|
# No buildint OrderedDict before 2.7
|
|
|
|
install_requires.append('ordereddict')
|
|
|
|
|
2013-02-18 16:09:40 -05:00
|
|
|
setup(
|
|
|
|
name='moto',
|
2013-11-08 16:05:36 -05:00
|
|
|
version='0.2.10',
|
2013-03-19 11:45:19 -04:00
|
|
|
description='A library that allows your python tests to easily'
|
2013-03-05 08:21:47 -05:00
|
|
|
' mock out the boto library',
|
2013-02-18 16:09:40 -05:00
|
|
|
author='Steve Pulec',
|
|
|
|
author_email='spulec@gmail',
|
|
|
|
url='https://github.com/spulec/moto',
|
2013-03-05 08:14:43 -05:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'moto_server = moto.server:main',
|
|
|
|
],
|
|
|
|
},
|
2013-02-25 23:56:41 -05:00
|
|
|
packages=find_packages(),
|
2013-10-03 20:34:13 -04:00
|
|
|
install_requires=install_requires,
|
2013-02-26 00:12:34 -05:00
|
|
|
)
|