setup.cfg 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. [metadata]
  2. name = mock
  3. summary = Rolling backport of unittest.mock for all Pythons
  4. home-page = http://mock.readthedocs.org/en/latest/
  5. description-file = README.rst
  6. author = Testing Cabal
  7. author-email = testing-in-python@lists.idyll.org
  8. license = OSI Approved :: BSD License
  9. classifier =
  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
  28. keyword =
  29. testing, test, mock, mocking, unittest, patching, stubs, fakes, doubles
  30. [options]
  31. install_requires =
  32. six
  33. funcsigs>=1;python_version<"3.3"
  34. python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  35. packages = mock
  36. [options.extras_require]
  37. docs =
  38. sphinx
  39. test =
  40. pytest
  41. pytest-cov
  42. build =
  43. twine
  44. wheel
  45. blurb
  46. [bdist_wheel]
  47. universal = 1
  48. [tool:pytest]
  49. python_files = test*.py
  50. filterwarnings =
  51. ignore::DeprecationWarning
  52. [egg_info]
  53. tag_build =
  54. tag_date = 0