2013-02-18 16:09:40 -05:00
|
|
|
#!/usr/bin/env python
|
2014-08-27 11:17:06 -04:00
|
|
|
from __future__ import unicode_literals
|
2013-02-18 16:09:40 -05:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2013-10-03 20:34:13 -04:00
|
|
|
install_requires = [
|
2014-09-10 11:23:12 -04:00
|
|
|
"Jinja2",
|
2015-11-28 08:51:34 -05:00
|
|
|
"boto>=2.26.0",
|
2013-10-03 20:34:13 -04:00
|
|
|
"flask",
|
2015-12-13 21:53:58 -05:00
|
|
|
"httpretty==0.8.10",
|
2014-05-14 20:50:22 +10:00
|
|
|
"requests",
|
2014-09-10 11:23:12 -04:00
|
|
|
"xmltodict",
|
|
|
|
"six",
|
|
|
|
"werkzeug",
|
2013-10-03 20:34:13 -04:00
|
|
|
]
|
|
|
|
|
2015-08-11 21:35:20 -04:00
|
|
|
extras_require = {
|
|
|
|
# No builtin OrderedDict before 2.7
|
|
|
|
':python_version=="2.6"': ['ordereddict'],
|
|
|
|
}
|
2013-10-03 20:34:13 -04:00
|
|
|
|
2013-02-18 16:09:40 -05:00
|
|
|
setup(
|
|
|
|
name='moto',
|
2015-11-27 14:46:50 -05:00
|
|
|
version='0.4.19',
|
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',
|
2015-07-27 11:44:41 -04:00
|
|
|
author_email='spulec@gmail.com',
|
2013-02-18 16:09:40 -05:00
|
|
|
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,
|
2015-08-11 21:35:20 -04:00
|
|
|
extras_require=extras_require,
|
2014-08-29 23:46:55 -04: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 00:12:34 -05:00
|
|
|
)
|