METADATA 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. Metadata-Version: 2.1
  2. Name: matplotlib
  3. Version: 3.3.3
  4. Summary: Python plotting package
  5. Home-page: https://matplotlib.org
  6. Author: John D. Hunter, Michael Droettboom
  7. Author-email: matplotlib-users@python.org
  8. License: PSF
  9. Download-URL: https://matplotlib.org/users/installing.html
  10. Project-URL: Documentation, https://matplotlib.org
  11. Project-URL: Source Code, https://github.com/matplotlib/matplotlib
  12. Project-URL: Bug Tracker, https://github.com/matplotlib/matplotlib/issues
  13. Project-URL: Forum, https://discourse.matplotlib.org/
  14. Project-URL: Donate, https://numfocus.org/donate-to-matplotlib
  15. Platform: any
  16. Classifier: Development Status :: 5 - Production/Stable
  17. Classifier: Framework :: Matplotlib
  18. Classifier: Intended Audience :: Science/Research
  19. Classifier: Intended Audience :: Education
  20. Classifier: License :: OSI Approved :: Python Software Foundation License
  21. Classifier: Programming Language :: Python
  22. Classifier: Programming Language :: Python :: 3
  23. Classifier: Programming Language :: Python :: 3.6
  24. Classifier: Programming Language :: Python :: 3.7
  25. Classifier: Programming Language :: Python :: 3.8
  26. Classifier: Topic :: Scientific/Engineering :: Visualization
  27. Requires-Python: >=3.6
  28. Description-Content-Type: text/x-rst
  29. Requires-Dist: cycler (>=0.10)
  30. Requires-Dist: kiwisolver (>=1.0.1)
  31. Requires-Dist: numpy (>=1.15)
  32. Requires-Dist: pillow (>=6.2.0)
  33. Requires-Dist: pyparsing (!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3)
  34. Requires-Dist: python-dateutil (>=2.1)
  35. |PyPi|_ |Downloads|_ |NUMFocus|_
  36. |DiscourseBadge|_ |Gitter|_ |GitHubIssues|_ |GitTutorial|_
  37. |Travis|_ |AzurePipelines|_ |AppVeyor|_ |Codecov|_ |LGTM|_
  38. .. |Travis| image:: https://travis-ci.com/matplotlib/matplotlib.svg?branch=master
  39. .. _Travis: https://travis-ci.com/matplotlib/matplotlib
  40. .. |AzurePipelines| image:: https://dev.azure.com/matplotlib/matplotlib/_apis/build/status/matplotlib.matplotlib?branchName=master
  41. .. _AzurePipelines: https://dev.azure.com/matplotlib/matplotlib/_build/latest?definitionId=1&branchName=master
  42. .. |AppVeyor| image:: https://ci.appveyor.com/api/projects/status/github/matplotlib/matplotlib?branch=master&svg=true
  43. .. _AppVeyor: https://ci.appveyor.com/project/matplotlib/matplotlib
  44. .. |Codecov| image:: https://codecov.io/github/matplotlib/matplotlib/badge.svg?branch=master&service=github
  45. .. _Codecov: https://codecov.io/github/matplotlib/matplotlib?branch=master
  46. .. |LGTM| image:: https://img.shields.io/lgtm/grade/python/g/matplotlib/matplotlib.svg?logo=lgtm&logoWidth=18
  47. .. _LGTM: https://lgtm.com/projects/g/matplotlib/matplotlib
  48. .. |DiscourseBadge| image:: https://img.shields.io/badge/help_forum-discourse-blue.svg
  49. .. _DiscourseBadge: https://discourse.matplotlib.org
  50. .. |Gitter| image:: https://badges.gitter.im/matplotlib/matplotlib.svg
  51. .. _Gitter: https://gitter.im/matplotlib/matplotlib
  52. .. |GitHubIssues| image:: https://img.shields.io/badge/issue_tracking-github-blue.svg
  53. .. _GitHubIssues: https://github.com/matplotlib/matplotlib/issues
  54. .. |GitTutorial| image:: https://img.shields.io/badge/PR-Welcome-%23FF8300.svg?
  55. .. _GitTutorial: https://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project
  56. .. |PyPi| image:: https://badge.fury.io/py/matplotlib.svg
  57. .. _PyPi: https://badge.fury.io/py/matplotlib
  58. .. |Downloads| image:: https://pepy.tech/badge/matplotlib/month
  59. .. _Downloads: https://pepy.tech/project/matplotlib/month
  60. .. |NUMFocus| image:: https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A
  61. .. _NUMFocus: https://numfocus.org
  62. .. image:: https://matplotlib.org/_static/logo2.svg
  63. Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python.
  64. Check out our `home page <https://matplotlib.org/>`_ for more information.
  65. .. image:: https://matplotlib.org/_static/readme_preview.png
  66. Matplotlib produces publication-quality figures in a variety of hardcopy formats
  67. and interactive environments across platforms. Matplotlib can be used in Python scripts,
  68. the Python and IPython shell, web application servers, and various
  69. graphical user interface toolkits.
  70. Install
  71. =======
  72. For installation instructions and requirements, see `INSTALL.rst <INSTALL.rst>`_ or the
  73. `install <https://matplotlib.org/users/installing.html>`_ documentation.
  74. Test
  75. ====
  76. After installation, launch the test suite::
  77. python -m pytest
  78. Read the `testing guide <https://matplotlib.org/devel/testing.html>`_ for more information and alternatives.
  79. Contribute
  80. ==========
  81. You've discovered a bug or something else you want to change - excellent!
  82. You've worked out a way to fix it – even better!
  83. You want to tell us about it – best of all!
  84. Start at the `contributing guide <https://matplotlib.org/devdocs/devel/contributing.html>`_!
  85. Contact
  86. =======
  87. `Discourse <https://discourse.matplotlib.org/>`_ is the discussion forum for general questions and discussions and our recommended starting point.
  88. Our active mailing lists (which are mirrored on Discourse) are:
  89. * `Users <https://mail.python.org/mailman/listinfo/matplotlib-users>`_ mailing list: matplotlib-users@python.org
  90. * `Announcement <https://mail.python.org/mailman/listinfo/matplotlib-announce>`_ mailing list: matplotlib-announce@python.org
  91. * `Development <https://mail.python.org/mailman/listinfo/matplotlib-devel>`_ mailing list: matplotlib-devel@python.org
  92. Gitter_ is for coordinating development and asking questions directly related
  93. to contributing to matplotlib.
  94. Citing Matplotlib
  95. =================
  96. If Matplotlib contributes to a project that leads to publication, please
  97. acknowledge this by citing Matplotlib.
  98. `A ready-made citation entry <https://matplotlib.org/citing.html>`_ is available.