2013-02-18 21:09:40 +00:00
|
|
|
#!/usr/bin/env python
|
2014-08-27 15:17:06 +00:00
|
|
|
from __future__ import unicode_literals
|
2013-02-18 21:09:40 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2013-10-04 00:34:13 +00:00
|
|
|
install_requires = [
|
|
|
|
"boto",
|
2014-01-12 01:29:59 +00:00
|
|
|
"dicttoxml",
|
2013-10-04 00:34:13 +00:00
|
|
|
"flask",
|
|
|
|
"httpretty>=0.6.1",
|
|
|
|
"Jinja2",
|
2014-01-12 01:29:59 +00:00
|
|
|
"xmltodict",
|
2014-05-14 10:50:22 +00:00
|
|
|
"requests",
|
2013-10-04 00:34:13 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
if sys.version_info < (2, 7):
|
|
|
|
# No buildint OrderedDict before 2.7
|
|
|
|
install_requires.append('ordereddict')
|
|
|
|
|
2013-02-18 21:09:40 +00:00
|
|
|
setup(
|
|
|
|
name='moto',
|
2014-09-09 02:21:00 +00:00
|
|
|
version='0.3.6',
|
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-12-19 21:16:00 +00:00
|
|
|
packages=find_packages(exclude=("tests", "tests.*")),
|
2013-10-04 00:34:13 +00:00
|
|
|
install_requires=install_requires,
|
2014-08-30 03:46:55 +00:00
|
|
|
license="Apache",
|
|
|
|
test_suite="tests",
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 2",
|
|
|
|
"Programming Language :: Python :: 2.6",
|
|
|
|
"Programming Language :: Python :: 2.7",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.3",
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
"Topic :: Software Development :: Testing",
|
|
|
|
],
|
2013-02-26 05:12:34 +00:00
|
|
|
)
|