Skip to content

Commit 8c3e51c

Browse files
committedApr 16, 2018
Generate Sphinx docs and upload them to GitHub pages on each Travis build
1 parent 6d96a09 commit 8c3e51c

File tree

4 files changed

+213
-2
lines changed

4 files changed

+213
-2
lines changed
 

‎.travis.yml

+17-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,25 @@ env:
1111
- GEVENT=true
1212
- GEVENT=false
1313

14-
install: pip install gevent PyYaml
15-
script: python -m pytest -vv tests
14+
install:
15+
- pip install gevent PyYaml
16+
- pip install sphinx ghp-import
17+
18+
script:
19+
- python -m pytest -vv tests
1620

1721
notifications:
1822
email:
1923
on_success: change
2024
on_failure: change
25+
26+
after_success: |-
27+
[[ $TRAVIS_JOB_NUMBER = *.1 ]] &&
28+
[ $TRAVIS_BRANCH = master ] &&
29+
[ $TRAVIS_PULL_REQUEST = false ] &&
30+
sphinx-apidoc -o _static easypy &&
31+
PYTHONPATH=`pwd`:$PYTHONPATH sphinx-build -M html "." "_build" &&
32+
echo "<meta http-equiv=refresh content=0;url=html/_static/easypy.html>" > _build/index.html &&
33+
export PATH=$HOME/.local/bin:$PATH &&
34+
ghp-import -n _build &&
35+
git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages

‎README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
[![Build Status](https://api.travis-ci.org/weka-io/easypy.svg?branch=master)](https://travis-ci.org/weka-io/easypy)
2+
[![Documentation](https://img.shields.io/badge/api-sphinx-blue.svg)](https://weka-io.github.io/easypy/)
3+
14
# easypy
25
easypy makes python even easier!

‎conf.py

+173
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Configuration file for the Sphinx documentation builder.
4+
#
5+
# This file does only contain a selection of the most common options. For a
6+
# full list see the documentation:
7+
# http://www.sphinx-doc.org/en/stable/config
8+
9+
# -- Path setup --------------------------------------------------------------
10+
11+
# If extensions (or modules to document with autodoc) are in another directory,
12+
# add these directories to sys.path here. If the directory is relative to the
13+
# documentation root, use os.path.abspath to make it absolute, like shown here.
14+
#
15+
# import os
16+
# import sys
17+
# sys.path.insert(0, os.path.abspath('.'))
18+
19+
20+
# -- Project information -----------------------------------------------------
21+
22+
project = 'easypy'
23+
copyright = '2015, Weka.IO'
24+
author = 'Weka.IO'
25+
26+
# The short X.Y version
27+
version = ''
28+
# The full version, including alpha/beta/rc tags
29+
release = ''
30+
31+
32+
# -- General configuration ---------------------------------------------------
33+
34+
# If your documentation needs a minimal Sphinx version, state it here.
35+
#
36+
# needs_sphinx = '1.0'
37+
38+
# Add any Sphinx extension module names here, as strings. They can be
39+
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
40+
# ones.
41+
extensions = [
42+
'sphinx.ext.autodoc',
43+
# 'sphinx.ext.autosummary',
44+
# 'sphinxcontrib.fulltoc',
45+
]
46+
47+
# autodoc_default_flags = ['members']
48+
# autosummary_generate = True
49+
50+
# Add any paths that contain templates here, relative to this directory.
51+
templates_path = ['_templates']
52+
53+
# The suffix(es) of source filenames.
54+
# You can specify multiple suffix as a list of string:
55+
#
56+
# source_suffix = ['.rst', '.md']
57+
source_suffix = '.rst'
58+
59+
# The master toctree document.
60+
master_doc = 'index'
61+
62+
# The language for content autogenerated by Sphinx. Refer to documentation
63+
# for a list of supported languages.
64+
#
65+
# This is also used if you do content translation via gettext catalogs.
66+
# Usually you set "language" from the command line for these cases.
67+
language = None
68+
69+
# List of patterns, relative to source directory, that match files and
70+
# directories to ignore when looking for source files.
71+
# This pattern also affects html_static_path and html_extra_path .
72+
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
73+
74+
# The name of the Pygments (syntax highlighting) style to use.
75+
pygments_style = 'sphinx'
76+
77+
78+
modindex_common_prefix = ['easypy.']
79+
80+
81+
# -- Options for HTML output -------------------------------------------------
82+
83+
# The theme to use for HTML and HTML Help pages. See the documentation for
84+
# a list of builtin themes.
85+
#
86+
html_theme = 'classic'
87+
88+
# Theme options are theme-specific and customize the look and feel of a theme
89+
# further. For a list of options available for each theme, see the
90+
# documentation.
91+
#
92+
# html_theme_options = {}
93+
html_theme_options = {
94+
'stickysidebar': True,
95+
}
96+
97+
# Add any paths that contain custom static files (such as style sheets) here,
98+
# relative to this directory. They are copied after the builtin static files,
99+
# so a file named "default.css" will overwrite the builtin "default.css".
100+
html_static_path = ['_static']
101+
102+
# Custom sidebar templates, must be a dictionary that maps document names
103+
# to template names.
104+
#
105+
# The default sidebars (for documents that don't match any pattern) are
106+
# defined by theme itself. Builtin themes are using these templates by
107+
# default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
108+
# 'searchbox.html']``.
109+
#
110+
# html_sidebars = {}
111+
html_sidebars = {
112+
'**': ['localtoc.html', 'globaltoc.html', 'searchbox.html'],
113+
}
114+
115+
116+
# -- Options for HTMLHelp output ---------------------------------------------
117+
118+
# Output file base name for HTML help builder.
119+
htmlhelp_basename = 'easypydoc'
120+
121+
122+
# -- Options for LaTeX output ------------------------------------------------
123+
124+
latex_elements = {
125+
# The paper size ('letterpaper' or 'a4paper').
126+
#
127+
# 'papersize': 'letterpaper',
128+
129+
# The font size ('10pt', '11pt' or '12pt').
130+
#
131+
# 'pointsize': '10pt',
132+
133+
# Additional stuff for the LaTeX preamble.
134+
#
135+
# 'preamble': '',
136+
137+
# Latex figure (float) alignment
138+
#
139+
# 'figure_align': 'htbp',
140+
}
141+
142+
# Grouping the document tree into LaTeX files. List of tuples
143+
# (source start file, target name, title,
144+
# author, documentclass [howto, manual, or own class]).
145+
latex_documents = [
146+
(master_doc, 'easypy.tex', 'easypy Documentation',
147+
'Weka.IO', 'manual'),
148+
]
149+
150+
151+
# -- Options for manual page output ------------------------------------------
152+
153+
# One entry per manual page. List of tuples
154+
# (source start file, name, description, authors, manual section).
155+
man_pages = [
156+
(master_doc, 'easypy', 'easypy Documentation',
157+
[author], 1)
158+
]
159+
160+
161+
# -- Options for Texinfo output ----------------------------------------------
162+
163+
# Grouping the document tree into Texinfo files. List of tuples
164+
# (source start file, target name, title, author,
165+
# dir menu entry, description, category)
166+
texinfo_documents = [
167+
(master_doc, 'easypy', 'easypy Documentation',
168+
author, 'easypy', 'One line description of project.',
169+
'Miscellaneous'),
170+
]
171+
172+
173+
# -- Extension configuration -------------------------------------------------

‎index.rst

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
.. easypy documentation master file, created by
2+
sphinx-quickstart on Mon Apr 16 12:21:43 2018.
3+
You can adapt this file completely to your liking, but it should at least
4+
contain the root `toctree` directive.
5+
6+
Welcome to easypy's documentation!
7+
==================================
8+
9+
.. toctree::
10+
:maxdepth: 2
11+
:caption: Contents:
12+
13+
14+
15+
Indices and tables
16+
==================
17+
18+
* :ref:`genindex`
19+
* :ref:`modindex`
20+
* :ref:`search`

0 commit comments

Comments
 (0)
Please sign in to comment.