File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ pytest-cov==2.6.0 # Measure code coverage
2020pytest == 3.8.2 # Test runners
2121PyYAML == 3.13
2222Sphinx == 1.8.1
23+ sphinx-autodoc-typehints == 1.3.0
2324sphinxcontrib-spelling == 4.2.0
2425twine == 1.12.1
2526versioneer == 0.18
Original file line number Diff line number Diff line change 1717 'sphinx.ext.autodoc' ,
1818 'sphinx.ext.intersphinx' ,
1919 'sphinx.ext.napoleon' ,
20+ 'sphinx_autodoc_typehints' ,
2021 'sphinxcontrib.spelling' ,
2122]
2223
5758autoclass_content = 'init'
5859intersphinx_mapping = {
5960 'python' : ('https://docs.python.org/3.7' , None ),
60- 'docker' : ('http://docker-py.readthedocs.io/en/stable' , None ),
6161}
6262nitpicky = True
6363warning_is_error = True
6868 ('py:class' , 'typing.Optional' ),
6969 ('py:class' , '_io.BytesIO' ),
7070 ('py:class' , 'docker.types.services.Mount' ),
71+ # Requests documentation exposes ``requests.Response``, not
72+ # ``requests.models.response``.
73+ ('py:class' , 'requests.models.Response' ),
7174]
7275
7376html_show_copyright = False
Original file line number Diff line number Diff line change @@ -11,6 +11,12 @@ Installation
1111 This is tested on Python 3.7+.
1212Get in touch with ``adamdangoor@gmail.com `` if you would like to use this with another language.
1313
14+ Reference
15+ ---------
16+
17+ .. automodule :: vws
18+ :members:
19+
1420.. toctree ::
1521 :maxdepth: 3
1622
You can’t perform that action at this time.
0 commit comments