1from io import open
2
3from setuptools import setup
4
5setup(
6    name="pytest-mock",
7    entry_points={"pytest11": ["pytest_mock = pytest_mock"]},
8    py_modules=["pytest_mock", "_pytest_mock_version"],
9    platforms="any",
10    python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
11    install_requires=["pytest>=2.7", 'mock;python_version<"3.0"'],
12    use_scm_version={"write_to": "_pytest_mock_version.py"},
13    setup_requires=["setuptools_scm"],
14    url="https://github.com/pytest-dev/pytest-mock/",
15    license="MIT",
16    author="Bruno Oliveira",
17    author_email="nicoddemus@gmail.com",
18    description="Thin-wrapper around the mock package for easier use with py.test",
19    long_description=open("README.rst", encoding="utf-8").read(),
20    keywords="pytest mock",
21    extras_require={"dev": ["pre-commit", "tox"]},
22    classifiers=[
23        "Development Status :: 5 - Production/Stable",
24        "Framework :: Pytest",
25        "Intended Audience :: Developers",
26        "License :: OSI Approved :: MIT License",
27        "Operating System :: OS Independent",
28        "Programming Language :: Python :: 2",
29        "Programming Language :: Python :: 2.7",
30        "Programming Language :: Python :: 3",
31        "Programming Language :: Python :: 3.4",
32        "Programming Language :: Python :: 3.5",
33        "Programming Language :: Python :: 3.6",
34        "Programming Language :: Python :: 3.7",
35        "Programming Language :: Python :: 3.8",
36        "Topic :: Software Development :: Testing",
37    ],
38)
39