diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2017-12-06 21:04:49 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2017-12-31 18:28:05 +0100 |
commit | be094f8f2f7bf2627bc3878ff50bd65b335a59e4 (patch) | |
tree | 0590908e6d840190188d0f3bc9a961af138a63f2 /docs/conf.py | |
parent | c576bc44aef61686eab0d8b23363da6b879cef25 (diff) |
Use README as package long description
This also shortens the stdnum module docstring and updates the Sphinx
configuration.
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py index 27938fd..38ac5f7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,7 +46,7 @@ master_doc = 'index' # General information about the project. project = u'python-stdnum' -copyright = u'2013, Arthur de Jong' +copyright = u'2013-2017, Arthur de Jong' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -69,7 +69,7 @@ release = version # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. -exclude_patterns = ['_*', '.svn'] +exclude_patterns = ['_*', '.svn', '.git'] # The reST default role (used for this markup: `text`) to use for all documents. #default_role = None @@ -132,7 +132,7 @@ html_theme = 'default' # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -html_last_updated_fmt = '%b %d, %Y' +html_last_updated_fmt = '%Y-%m-%d' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. @@ -189,3 +189,5 @@ man_pages = [ # If true, show URL addresses after external links. #man_show_urls = False + +intersphinx_mapping = {'python': ('https://docs.python.org/3', None)} |