Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gyli committed Oct 5, 2019
1 parent afc6490 commit 9a14edd
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -6,9 +6,9 @@ Documentation: [http://pywaffle.readthedocs.io](http://pywaffle.readthedocs.io)

## Introduction

PyWaffle is a Python package to make waffle chart, bases on [Matplotlib](https://matplotlib.org/).
PyWaffle is a Python package to plot waffle chart.

It provides a [Figure constructor class](https://matplotlib.org/gallery/subplots_axes_and_figures/custom_figure_class.html) `Waffle`, which could be passed to [matplotlib.pyplot.figure](https://matplotlib.org/api/_as_gen/matplotlib.pyplot.figure.html) and generates a matplotlib Figure object.
It provides a [Figure constructor class](https://matplotlib.org/gallery/subplots_axes_and_figures/custom_figure_class.html) `Waffle`, which could be passed to [matplotlib.pyplot.figure](https://matplotlib.org/api/_as_gen/matplotlib.pyplot.figure.html) and generate a matplotlib Figure object.

## Installation

Expand Down
5 changes: 3 additions & 2 deletions docs/conf.py
Expand Up @@ -41,6 +41,7 @@
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.intersphinx',
'recommonmark'
]

# Add any paths that contain templates here, relative to this directory.
Expand All @@ -49,8 +50,8 @@
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = ['.rst', '.md']
# source_suffix = '.rst'

# The master toctree document.
master_doc = 'index'
Expand Down
5 changes: 0 additions & 5 deletions docs/examples.rst

This file was deleted.

9 changes: 6 additions & 3 deletions docs/index.rst
Expand Up @@ -3,10 +3,13 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to PyWaffle's documentation!
====================================
PyWaffle Documentation
======================

PyWaffle: Make Waffle Charts in Python
PyWaffle is a Python package to plot waffle chart.

A `Figure constructor class
<https://matplotlib.org/gallery/subplots_axes_and_figures/custom_figure_class.html>`_ Waffle is provided, which could be passed to matplotlib.pyplot.figure and generate a matplotlib Figure object.

.. toctree::
:maxdepth: 2
Expand Down
1 change: 1 addition & 0 deletions requirements_dev.txt
@@ -1,3 +1,4 @@
matplotlib
pandas
recommonmark
sphinx

0 comments on commit 9a14edd

Please sign in to comment.