• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSE/H03-May-2022-724606

doc/H03-May-2022-31,56023,004

examples/H03-May-2022-35,58423,643

extern/H01-Mar-2019-105,73572,934

lib/H01-Mar-2019-214,546161,412

src/H01-Mar-2019-20,60616,255

tools/H03-May-2022-1,9731,511

tutorials/H03-May-2022-10,1264,625

unit/H01-Mar-2019-743476

INSTALL.rstH A D26-Feb-201913.2 KiB368264

MANIFEST.inH A D26-Feb-2019850 2625

PKG-INFOH A D01-Mar-20191.2 KiB2927

README.rstH A D26-Feb-20193.1 KiB8455

matplotlibrc.templateH A D26-Feb-201932.3 KiB619562

pytest.iniH A D26-Feb-20197.2 KiB134124

setup.cfgH A D03-May-20222.9 KiB8477

setup.cfg.templateH A D26-Feb-20193.1 KiB9990

setup.pyH A D03-May-202211.4 KiB339251

setupext.pyH A D26-Feb-201967.9 KiB2,1961,725

tests.pyH A D26-Feb-20191.9 KiB5830

versioneer.pyH A D23-Feb-201961.3 KiB1,7051,281

README.rst

1|Travis|_ |AppVeyor|_ |Codecov|_ |PyPi|_ |Gitter|_ |NUMFocus|_
2
3
4.. |Travis| image:: https://travis-ci.org/matplotlib/matplotlib.svg?branch=master
5.. _Travis: https://travis-ci.org/matplotlib/matplotlib
6
7.. |AppVeyor| image:: https://ci.appveyor.com/api/projects/status/github/matplotlib/matplotlib?branch=master&svg=true
8.. _AppVeyor: https://ci.appveyor.com/project/matplotlib/matplotlib
9
10.. |Codecov| image:: https://codecov.io/github/matplotlib/matplotlib/badge.svg?branch=master&service=github
11.. _Codecov: https://codecov.io/github/matplotlib/matplotlib?branch=master
12
13.. |PyPi| image:: https://badge.fury.io/py/matplotlib.svg
14.. _PyPi: https://badge.fury.io/py/matplotlib
15
16.. |Gitter| image:: https://badges.gitter.im/matplotlib/matplotlib.png
17.. _Gitter: https://gitter.im/matplotlib/matplotlib
18
19.. |NUMFocus| image:: https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A
20.. _NUMFocus: http://www.numfocus.org
21
22
23##########
24Matplotlib
25##########
26
27Matplotlib is a Python 2D plotting library which produces publication-quality
28figures in a variety of hardcopy formats and interactive environments across
29platforms. Matplotlib can be used in Python scripts, the Python and IPython
30shell (à la MATLAB or Mathematica), web application servers, and various
31graphical user interface toolkits.
32
33`Home page <http://matplotlib.org/>`_
34
35Installation
36============
37
38For installation instructions and requirements, see the INSTALL.rst file or the
39`install <http://matplotlib.org/users/installing.html>`_ documentation. If you
40think you may want to contribute to matplotlib, check out the `guide to
41working with the source code
42<http://matplotlib.org/devel/gitwash/index.html>`_.
43
44Testing
45=======
46
47After installation, you can launch the test suite::
48
49  py.test
50
51Or from the Python interpreter::
52
53  import matplotlib
54  matplotlib.test()
55
56Consider reading http://matplotlib.org/devel/coding_guide.html#testing for
57more information. Note that the test suite requires pytest and, on Python 2.7,
58mock. Please install with pip or your package manager of choice.
59
60Contact
61=======
62matplotlib's communication channels include active mailing lists:
63
64* `Users <https://mail.python.org/mailman/listinfo/matplotlib-users>`_ mailing list: matplotlib-users@python.org
65* `Announcement  <https://mail.python.org/mailman/listinfo/matplotlib-announce>`_ mailing list: matplotlib-announce@python.org
66* `Development <https://mail.python.org/mailman/listinfo/matplotlib-devel>`_ mailing list: matplotlib-devel@python.org
67
68The first is a good starting point for general questions and discussions.
69
70Gitter_ is for coordinating development and asking questions directly related
71to contributing to matplotlib.
72
73Contribute
74==========
75You've discovered a bug or something else you want to change - excellent!
76
77You've worked out a way to fix it – even better!
78
79You want to tell us about it – best of all!
80
81Start at the `contributing guide <http://matplotlib.org/devdocs/devel/contributing.html>`_!
82
83Developer notes are now at `_Developer Discussions <https://github.com/orgs/matplotlib/teams/developers/discussions>`_
84