You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
3.1 KiB

  1. Metadata-Version: 2.1
  2. Name: mock
  3. Version: 3.0.5
  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: OSI Approved :: BSD License
  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 :: 2
  17. Classifier: Programming Language :: Python :: 2.7
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3.4
  20. Classifier: Programming Language :: Python :: 3.5
  21. Classifier: Programming Language :: Python :: 3.6
  22. Classifier: Programming Language :: Python :: 3.7
  23. Classifier: Programming Language :: Python :: Implementation :: CPython
  24. Classifier: Programming Language :: Python :: Implementation :: PyPy
  25. Classifier: Topic :: Software Development :: Libraries
  26. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  27. Classifier: Topic :: Software Development :: Testing
  28. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  29. Requires-Dist: six
  30. Requires-Dist: funcsigs (>=1) ; python_version < "3.3"
  31. Provides-Extra: build
  32. Requires-Dist: twine ; extra == 'build'
  33. Requires-Dist: wheel ; extra == 'build'
  34. Requires-Dist: blurb ; extra == 'build'
  35. Provides-Extra: docs
  36. Requires-Dist: sphinx ; extra == 'docs'
  37. Provides-Extra: test
  38. Requires-Dist: pytest ; extra == 'test'
  39. Requires-Dist: pytest-cov ; extra == 'test'
  40. mock is a library for testing in Python. It allows you to replace parts of
  41. your system under test with mock objects and make assertions about how they
  42. have been used.
  43. mock is now part of the Python standard library, available as `unittest.mock
  44. <https://docs.python.org/dev/library/unittest.mock.html>`_ in Python 3.3
  45. onwards.
  46. This package contains a rolling backport of the standard library mock code
  47. compatible with Python 2.7 and 3.4 and up.
  48. Please see the standard library documentation for more details.
  49. :Homepage: `Mock Homepage`_
  50. :Download: `Mock on PyPI`_
  51. :Documentation: `Python Docs`_
  52. :License: `BSD License`_
  53. :Support: `Mailing list (testing-in-python@lists.idyll.org)
  54. <http://lists.idyll.org/listinfo/testing-in-python>`_
  55. :Code: `GitHub
  56. <https://github.com/testing-cabal/mock>`_
  57. :Issue tracker: `GitHub Issues
  58. <https://github.com/testing-cabal/mock/issues>`_
  59. :Build status:
  60. |CircleCI|_ |Docs|_
  61. .. |CircleCI| image:: https://circleci.com/gh/testing-cabal/mock/tree/master.svg?style=shield
  62. .. _CircleCI: https://circleci.com/gh/testing-cabal/mock/tree/master
  63. .. |Docs| image:: https://readthedocs.org/projects/mock/badge/?version=latest
  64. .. _Docs: http://mock.readthedocs.org/en/latest/
  65. .. _Mock Homepage: http://mock.readthedocs.org/en/latest/
  66. .. _BSD License: https://github.com/testing-cabal/mock/blob/master/LICENSE.txt
  67. .. _Python Docs: https://docs.python.org/dev/library/unittest.mock.html
  68. .. _mock on PyPI: https://pypi.org/project/mock/