fceeb5d55f
In commit 4157abe8de
, the Jinja2
dep in setup.py was changed from being unpinned to requiring version
2.8 or newer. That change was made in response to this issue:
https://github.com/spulec/moto/issues/728
which pointed out that the use of 'lstrip_blocks' needed to
be supported. Support for that option was added in Jinja 2.7,
so it seems like the best option here, unless 2.8 is truly
required by moto, would be to allow Jinja 2.7.3 and newer --
preventing dep resolution conflicts in Python projects that pin
Jinja2 2.7.3 but also need to use moto.
71 lines
1.9 KiB
Python
Executable File
71 lines
1.9 KiB
Python
Executable File
#!/usr/bin/env python
|
|
from __future__ import unicode_literals
|
|
import setuptools
|
|
from setuptools import setup, find_packages
|
|
import sys
|
|
|
|
|
|
install_requires = [
|
|
"Jinja2>=2.7.3",
|
|
"boto>=2.36.0",
|
|
"boto3>=1.2.1",
|
|
"botocore>=1.7.12",
|
|
"cookies",
|
|
"cryptography>=2.0.0",
|
|
"requests>=2.5",
|
|
"xmltodict",
|
|
"six>1.9",
|
|
"werkzeug",
|
|
"pyaml",
|
|
"pytz",
|
|
"python-dateutil<2.7.0,>=2.1",
|
|
"mock",
|
|
"docker>=2.5.1",
|
|
"jsondiff==1.1.1",
|
|
"aws-xray-sdk<0.96,>=0.93",
|
|
]
|
|
|
|
extras_require = {
|
|
'server': ['flask'],
|
|
}
|
|
|
|
# https://hynek.me/articles/conditional-python-dependencies/
|
|
if int(setuptools.__version__.split(".", 1)[0]) < 18:
|
|
if sys.version_info[0:2] < (3, 3):
|
|
install_requires.append("backports.tempfile")
|
|
else:
|
|
extras_require[":python_version<'3.3'"] = ["backports.tempfile"]
|
|
|
|
|
|
setup(
|
|
name='moto',
|
|
version='1.3.0',
|
|
description='A library that allows your python tests to easily'
|
|
' mock out the boto library',
|
|
author='Steve Pulec',
|
|
author_email='spulec@gmail.com',
|
|
url='https://github.com/spulec/moto',
|
|
entry_points={
|
|
'console_scripts': [
|
|
'moto_server = moto.server:main',
|
|
],
|
|
},
|
|
packages=find_packages(exclude=("tests", "tests.*")),
|
|
install_requires=install_requires,
|
|
extras_require=extras_require,
|
|
include_package_data=True,
|
|
license="Apache",
|
|
test_suite="tests",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 2",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.3",
|
|
"Programming Language :: Python :: 3.4",
|
|
"Programming Language :: Python :: 3.5",
|
|
"Programming Language :: Python :: 3.6",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Topic :: Software Development :: Testing",
|
|
],
|
|
)
|