moto/setup.py

53 lines
1.3 KiB
Python
Raw Normal View History

2013-02-18 21:09:40 +00:00
#!/usr/bin/env python
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 = [
"Jinja2>=2.8",
"boto>=2.36.0",
2017-05-11 01:58:42 +00:00
"boto3>=1.2.1",
2017-02-16 03:47:33 +00:00
"cookies",
"cryptography>=2.0.0",
"requests>=2.5",
"xmltodict",
"dicttoxml",
"six>1.9",
"werkzeug",
2017-05-11 13:50:33 +00:00
"pyaml",
"pytz",
"python-dateutil<3.0.0,>=2.1",
"mock",
2013-10-04 00:34:13 +00:00
]
extras_require = {
'server': ['flask'],
}
2013-10-04 00:34:13 +00:00
2013-02-18 21:09:40 +00:00
setup(
name='moto',
2017-09-27 19:53:36 +00:00
version='1.1.16',
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',
2015-07-27 15:44:41 +00:00
author_email='spulec@gmail.com',
2013-02-18 21:09:40 +00:00
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,
extras_require=extras_require,
license="Apache",
test_suite="tests",
classifiers=[
"Programming Language :: Python :: 2",
"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
)