Skip to content

Commit 64d9536

Browse files
committed
Fix doc build
1 parent 5045fbc commit 64d9536

File tree

11 files changed

+40
-1129
lines changed

11 files changed

+40
-1129
lines changed

doc/_themes/pydoctheme/static/pydoctheme.css

-170
This file was deleted.

doc/_themes/pydoctheme/theme.conf

-23
This file was deleted.
+29-26
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,32 @@
1-
{% extends "!autosummary/class.rst" %}
1+
{{ fullname }}
2+
{{ underline }}
23

3-
.. currentmodule:: freetypy
4+
.. currentmodule:: {{ module }}
45

5-
{% block methods %}
6-
{% if methods %}
7-
.. HACK -- the point here is that we don't want this to appear in the output, but the autosummary should still generate the pages.
8-
.. autosummary::
9-
:toctree:
10-
{% for item in all_methods %}
11-
{%- if not item.startswith('_') or item in ['__call__'] %}
12-
{{ name }}.{{ item }}
13-
{%- endif -%}
14-
{%- endfor %}
15-
{% endif %}
16-
{% endblock %}
6+
.. autoclass:: {{ objname }}
177

18-
{% block attributes %}
19-
{% if attributes %}
20-
.. HACK -- the point here is that we don't want this to appear in the output, but the autosummary should still generate the pages.
21-
.. autosummary::
22-
:toctree:
23-
{% for item in all_attributes %}
24-
{%- if not item.startswith('_') %}
25-
{{ name }}.{{ item }}
26-
{%- endif -%}
27-
{%- endfor %}
28-
{% endif %}
29-
{% endblock %}
8+
{% block methods %}
9+
.. automethod:: __init__
10+
11+
{% if methods %}
12+
.. rubric:: Methods
13+
14+
.. autosummary::
15+
:toctree: _generated
16+
{% for item in methods %}
17+
~{{ name }}.{{ item }}
18+
{%- endfor %}
19+
{% endif %}
20+
{% endblock %}
21+
22+
{% block attributes %}
23+
{% if attributes %}
24+
.. rubric:: Attributes
25+
26+
.. autosummary::
27+
:toctree: _generated
28+
{% for item in attributes %}
29+
~{{ name }}.{{ item }}
30+
{%- endfor %}
31+
{% endif %}
32+
{% endblock %}

doc/source/conf.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
'sphinx.ext.intersphinx',
3434
'sphinx.ext.mathjax',
3535
'sphinx.ext.ifconfig',
36-
'sphinxext.numpydoc']
36+
'sphinx.ext.napoleon']
3737

3838
# Add any paths that contain templates here, relative to this directory.
3939
templates_path = ['_templates']
@@ -96,19 +96,22 @@
9696

9797
autosummary_generate = ['api.rst']
9898

99+
autoclass_content = 'class'
100+
autodoc_default_flags = []
101+
99102
# -- Options for HTML output ---------------------------------------------------
100103

101104
# The theme to use for HTML and HTML Help pages. See the documentation for
102105
# a list of builtin themes.
103-
html_theme = 'pydoctheme'
106+
html_theme = 'sphinx_rtd_theme'
104107

105108
# Theme options are theme-specific and customize the look and feel of a theme
106109
# further. For a list of options available for each theme, see the
107110
# documentation.
108111
#html_theme_options = {}
109112

110113
# Add any paths that contain custom themes here, relative to this directory.
111-
html_theme_path = ["../_themes",]
114+
# html_theme_path = ["../_themes",]
112115

113116
# The name for this set of Sphinx documents. If None, it defaults to
114117
# "<project> v<release> documentation".

doc/source/intro.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Introduction to freetypy
22
========================
33

44
Since freetypy closely follows freetype's native C API, the `freetype
5-
documentation <http://freetype.org/freetype2/documentation.html>`_
5+
documentation <http://freetype.org/freetype2/docs/documentation.html>`_
66
serves as a good introduction to freetypy as well.
77

88
Basic usage

doc/sphinxext/__init__.py

-1
This file was deleted.

0 commit comments

Comments
 (0)