From f26052dfa13d4bb17b55759b205ca769f6ef1cc1 Mon Sep 17 00:00:00 2001 From: chfw Date: Fri, 18 Jan 2019 18:18:37 +0000 Subject: [PATCH] :gems: release 0.0.2 --- CHANGELOG.rst | 21 +++++++++- changelog.yml | 14 ++++++- templates/docs/conf.py_t | 89 ++++++---------------------------------- 3 files changed, 43 insertions(+), 81 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ec1da40..d049ac3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,25 @@ Change log ================================================================================ -0.0.1 - 05.11.2018 +0.0.2 - 18-01-2019 +-------------------------------------------------------------------------------- + +Added +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +#. `#60 `_: codec and locale + hacks added +#. `#61 `_: add python + classifiers + +Updated +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +#. `#63 `_: updated Pipfile + implementation +#. Synchronize with sphinx doc file at release date + +0.0.1 - 05-11-2018 -------------------------------------------------------------------------------- First release @@ -9,4 +27,3 @@ First release #. versioning is applied #. Pipfile included -#. codec and locale hacks added diff --git a/changelog.yml b/changelog.yml index 5bf06ae..3d773af 100644 --- a/changelog.yml +++ b/changelog.yml @@ -1,12 +1,22 @@ name: "pypi-mobans" organisation: moremoban releases: +- changes: + - action: Added + details: + - "`PR#60`: codec and locale hacks added" + - "`PR#61`: add python classifiers" + - action: Updated + details: + - "`PR#63`: updated Pipfile implementation" + - Synchronize with sphinx doc file at release date + date: 18-01-2019 + version: 0.0.2 - changes: - action: First release details: - versioning is applied - Pipfile included - - codec and locale hacks added - date: 05.11.2018 + date: 05-11-2018 version: 0.0.1 diff --git a/templates/docs/conf.py_t b/templates/docs/conf.py_t index a29a6eb..98af7fe 100644 --- a/templates/docs/conf.py_t +++ b/templates/docs/conf.py_t @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- -# # Configuration file for the Sphinx documentation builder. # -# This file does only contain a selection of the most common options. For a -# full list see the documentation: +# This file only contains a selection of the most common options. For a full +# list see the documentation: # http://www.sphinx-doc.org/en/master/config # -- Path setup -------------------------------------------------------------- @@ -15,12 +13,12 @@ {% if append_syspath -%} import os import sys -sys.path.insert(0, u'{{ module_path }}') +sys.path.insert(0, {{ module_path | repr }}) {% else -%} # import os # import sys {% if module_path -%} -# sys.path.insert(0, u'{{ module_path }}') +# sys.path.insert(0, {{ module_path | repr }}) {% else -%} # sys.path.insert(0, os.path.abspath('.')) {% endif -%} @@ -28,22 +26,18 @@ sys.path.insert(0, u'{{ module_path }}') # -- Project information ----------------------------------------------------- -project = u'{{ project_str }}' -copyright = u'{{ copyright_str }}' -author = u'{{ author_str }}' +project = {{ project | repr }} +copyright = {{ copyright | repr }} +author = {{ author | repr }} # The short X.Y version -version = u'{{ version_str }}' +version = {{ version | repr }} # The full version, including alpha/beta/rc tags -release = u'{{ release_str }}' +release = {{ release | repr }} # -- General configuration --------------------------------------------------- -# If your documentation needs a minimal Sphinx version, state it here. -# -# needs_sphinx = '1.0' - # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. @@ -60,11 +54,11 @@ templates_path = ['{{ dot }}templates'] # You can specify multiple suffix as a list of string: # # source_suffix = ['.rst', '.md'] -source_suffix = '{{ suffix }}' +source_suffix = {{ suffix | repr }} {% if master_doc != 'index' -%} # The master toctree document. -master_doc = '{{ master_str }}' +master_doc = {{ master | repr }} {% endif -%} # The language for content autogenerated by Sphinx. Refer to documentation @@ -79,9 +73,6 @@ language = {{ language | repr }} # This pattern also affects html_static_path and html_extra_path. exclude_patterns = [{{ exclude_patterns }}] -# The name of the Pygments (syntax highlighting) style to use. -pygments_style = None - # -- Options for HTML output ------------------------------------------------- @@ -112,63 +103,6 @@ html_static_path = ['{{ dot }}static'] # html_sidebars = {} -# -- Options for HTMLHelp output --------------------------------------------- - -# Output file base name for HTML help builder. -htmlhelp_basename = '{{ project_fn }}doc' - - -# -- Options for LaTeX output ------------------------------------------------ - -latex_elements = { - # The paper size ('letterpaper' or 'a4paper'). - # - # 'papersize': 'letterpaper', - - # The font size ('10pt', '11pt' or '12pt'). - # - # 'pointsize': '10pt', - - # Additional stuff for the LaTeX preamble. - # - # 'preamble': '', - - # Latex figure (float) alignment - # - # 'figure_align': 'htbp', -} - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, -# author, documentclass [howto, manual, or own class]). -latex_documents = [ - (master_doc, '{{ project_fn }}.tex', u'{{ project_doc_texescaped_str }}', - u'{{ author_texescaped_str }}', 'manual'), -] - - -# -- Options for manual page output ------------------------------------------ - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - (master_doc, '{{ project_manpage }}', u'{{ project_doc_str }}', - [author], 1) -] - - -# -- Options for Texinfo output ---------------------------------------------- - -# Grouping the document tree into Texinfo files. List of tuples -# (source start file, target name, title, author, -# dir menu entry, description, category) -texinfo_documents = [ - (master_doc, '{{ project_fn }}', u'{{ project_doc_str }}', - author, '{{ project_fn }}', 'One line description of project.', - 'Miscellaneous'), -] - - # -- Options for Epub output ------------------------------------------------- # Bibliographic Dublin Core info. @@ -204,3 +138,4 @@ intersphinx_mapping = {'https://docs.python.org/': None} # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = True {%- endif %} +