PKG-INFO 3.1 KB

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