File tree 11 files changed +40
-1129
lines changed
11 files changed +40
-1129
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- {% extends "!autosummary/class.rst" %}
1
+ {{ fullname }}
2
+ {{ underline }}
2
3
3
- .. currentmodule :: freetypy
4
+ .. currentmodule :: {{ module }}
4
5
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 }}
17
7
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 %}
Original file line number Diff line number Diff line change 33
33
'sphinx.ext.intersphinx' ,
34
34
'sphinx.ext.mathjax' ,
35
35
'sphinx.ext.ifconfig' ,
36
- 'sphinxext.numpydoc ' ]
36
+ 'sphinx.ext.napoleon ' ]
37
37
38
38
# Add any paths that contain templates here, relative to this directory.
39
39
templates_path = ['_templates' ]
96
96
97
97
autosummary_generate = ['api.rst' ]
98
98
99
+ autoclass_content = 'class'
100
+ autodoc_default_flags = []
101
+
99
102
# -- Options for HTML output ---------------------------------------------------
100
103
101
104
# The theme to use for HTML and HTML Help pages. See the documentation for
102
105
# a list of builtin themes.
103
- html_theme = 'pydoctheme '
106
+ html_theme = 'sphinx_rtd_theme '
104
107
105
108
# Theme options are theme-specific and customize the look and feel of a theme
106
109
# further. For a list of options available for each theme, see the
107
110
# documentation.
108
111
#html_theme_options = {}
109
112
110
113
# Add any paths that contain custom themes here, relative to this directory.
111
- html_theme_path = ["../_themes" ,]
114
+ # html_theme_path = ["../_themes",]
112
115
113
116
# The name for this set of Sphinx documents. If None, it defaults to
114
117
# "<project> v<release> documentation".
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Introduction to freetypy
2
2
========================
3
3
4
4
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> `_
6
6
serves as a good introduction to freetypy as well.
7
7
8
8
Basic usage
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments