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",
|
2014-01-11 20:29:59 -05:00
|
|
|
"dicttoxml",
|
2013-10-03 20:34:13 -04:00
|
|
|
"flask",
|
|
|
|
"httpretty>=0.6.1",
|
|
|
|
"Jinja2",
|
2014-01-11 20:29:59 -05:00
|
|
|
"xmltodict",
|
2014-05-14 20:50:22 +10:00
|
|
|
"requests",
|
2013-10-03 20:34:13 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
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',
|
2014-07-18 20:56:52 -04:00
|
|
|
version='0.3.3',
|
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-12-19 16:16:00 -05:00
|
|
|
packages=find_packages(exclude=("tests", "tests.*")),
|
2013-10-03 20:34:13 -04:00
|
|
|
install_requires=install_requires,
|
2013-02-26 00:12:34 -05:00
|
|
|
)
|