METADATA 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. Metadata-Version: 2.1
  2. Name: mock
  3. Version: 4.0.3
  4. Summary: Rolling backport of unittest.mock for all Pythons
  5. Home-page: http://mock.readthedocs.org/en/latest/
  6. Author: Testing Cabal
  7. Author-email: testing-in-python@lists.idyll.org
  8. License: UNKNOWN
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Environment :: Console
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: BSD License
  14. Classifier: Operating System :: OS Independent
  15. Classifier: Programming Language :: Python
  16. Classifier: Programming Language :: Python :: 3.6
  17. Classifier: Programming Language :: Python :: 3.7
  18. Classifier: Programming Language :: Python :: 3.8
  19. Classifier: Programming Language :: Python :: Implementation :: CPython
  20. Classifier: Programming Language :: Python :: Implementation :: PyPy
  21. Classifier: Topic :: Software Development :: Libraries
  22. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  23. Classifier: Topic :: Software Development :: Testing
  24. Requires-Python: >=3.6
  25. Provides-Extra: build
  26. Requires-Dist: twine ; extra == 'build'
  27. Requires-Dist: wheel ; extra == 'build'
  28. Requires-Dist: blurb ; extra == 'build'
  29. Provides-Extra: docs
  30. Requires-Dist: sphinx ; extra == 'docs'
  31. Provides-Extra: test
  32. Requires-Dist: pytest (<5.4) ; extra == 'test'
  33. Requires-Dist: pytest-cov ; extra == 'test'
  34. mock is a library for testing in Python. It allows you to replace parts of
  35. your system under test with mock objects and make assertions about how they
  36. have been used.
  37. mock is now part of the Python standard library, available as `unittest.mock
  38. <https://docs.python.org/dev/library/unittest.mock.html>`_ in Python 3.3
  39. onwards.
  40. This package contains a rolling backport of the standard library mock code
  41. compatible with Python 3.6 and up.
  42. Please see the standard library documentation for more details.
  43. :Homepage: `Mock Homepage`_
  44. :Download: `Mock on PyPI`_
  45. :Documentation: `Python Docs`_
  46. :License: `BSD License`_
  47. :Support: `Mailing list (testing-in-python@lists.idyll.org)
  48. <http://lists.idyll.org/listinfo/testing-in-python>`_
  49. :Code: `GitHub
  50. <https://github.com/testing-cabal/mock>`_
  51. :Issue tracker: `GitHub Issues
  52. <https://github.com/testing-cabal/mock/issues>`_
  53. :Build status:
  54. |CircleCI|_ |Docs|_
  55. .. |CircleCI| image:: https://circleci.com/gh/testing-cabal/mock/tree/master.svg?style=shield
  56. .. _CircleCI: https://circleci.com/gh/testing-cabal/mock/tree/master
  57. .. |Docs| image:: https://readthedocs.org/projects/mock/badge/?version=latest
  58. .. _Docs: http://mock.readthedocs.org/en/latest/
  59. .. _Mock Homepage: http://mock.readthedocs.org/en/latest/
  60. .. _BSD License: https://github.com/testing-cabal/mock/blob/master/LICENSE.txt
  61. .. _Python Docs: https://docs.python.org/dev/library/unittest.mock.html
  62. .. _mock on PyPI: https://pypi.org/project/mock/