1[metadata]
2name = mock
3summary = Rolling backport of unittest.mock for all Pythons
4home-page = http://mock.readthedocs.org/en/latest/
5description-file = README.rst
6author = Testing Cabal
7author-email = testing-in-python@lists.idyll.org
8license = OSI Approved :: BSD License
9classifier =
10    Development Status :: 5 - Production/Stable
11    Environment :: Console
12    Intended Audience :: Developers
13    License :: OSI Approved :: BSD License
14    Operating System :: OS Independent
15    Programming Language :: Python
16    Programming Language :: Python :: 2
17    Programming Language :: Python :: 2.7
18    Programming Language :: Python :: 3
19    Programming Language :: Python :: 3.4
20    Programming Language :: Python :: 3.5
21    Programming Language :: Python :: 3.6
22    Programming Language :: Python :: 3.7
23    Programming Language :: Python :: Implementation :: CPython
24    Programming Language :: Python :: Implementation :: PyPy
25    Topic :: Software Development :: Libraries
26    Topic :: Software Development :: Libraries :: Python Modules
27    Topic :: Software Development :: Testing
28keyword =
29    testing, test, mock, mocking, unittest, patching, stubs, fakes, doubles
30
31[options]
32install_requires =
33  six
34  funcsigs>=1;python_version<"3.3"
35python_requires=>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
36packages = mock
37
38[options.extras_require]
39docs =
40  sphinx
41test =
42  pytest
43  pytest-cov
44build =
45  twine
46  wheel
47  blurb
48
49[bdist_wheel]
50universal = 1
51
52[tool:pytest]
53python_files=test*.py
54filterwarnings =
55    ignore::DeprecationWarning
56