@@ 58,7 58,7 @@ copyright = '2006-2013 PSF, 2013-2018 Ge
# The short X.Y version.
version = '0.2'
# The full version, including alpha/beta/rc tags.
-release = '0.2.0'
+release = '0.2.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ 175,7 175,7 @@ html_theme = 'python_docs_theme'
#html_file_suffix = None
# Output file base name for HTML help builder.
-htmlhelp_basename = 'gfdoc'
+htmlhelp_basename = 'gf3doc'
# -- Options for LaTeX output --------------------------------------------------
@@ 195,7 195,7 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ('index', 'gf.tex', u'gf Documentation',
+ ('index', 'gf3.tex', u'gf Documentation',
u'Gerald Klix', 'manual'),
]
@@ 225,7 225,7 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('index', 'gf', u'gf Documentation',
+ ('index', 'gf3', u'gf Documentation',
['Gerald Klix'], 1)
]
@@ 239,7 239,7 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
- ('index', 'gf', u'gf Documentation',
+ ('index', 'gf3', u'gf Documentation',
'Gerald Klix', 'gf', 'One line description of project.',
'Miscellaneous'),
]
@@ 260,7 260,7 @@ texinfo_documents = [
# -- Options for Epub output ---------------------------------------------------
# Bibliographic Dublin Core info.
-epub_title = u'gf'
+epub_title = u'gf3'
epub_author = u'Gerald Klix'
epub_publisher = u'Gerald Klix'
epub_copyright = u'2013-2018, Gerald Klix'
@@ 5,7 5,6 @@ Overview
`generic functions <http://en.wikipedia.org/wiki/Generic_function>`_
with multi-methods, that dispatch on all their arguments.
-
Simple Example
--------------
@@ 106,12 105,30 @@ Again the rational example is instructiv
.. _special instance methods of a python object:
http://docs.python.org/2/reference/datamodel.html#special-method-names
+
+Documentation
+-------------
+
+The whole documentation is available at in the following formats
+
+ HTML
+ http://gf3.klix.ch (Also servers as :mod:`gf`'s homepage)
+
+ PDF
+ http://gf3.klix.ch/gf3.pdf
+
Changes
-------
A short sketch of the changes done in each release.
+Release 0.2.1
+~~~~~~~~~~~~~
+
+Needed to bump the version information, because the homepage
+in the package-information was wrong [#]_.
+
Release 0.2.0
~~~~~~~~~~~~~
@@ 129,9 146,6 @@ The following was change in Release 0.2.
.. _parameter annotations: https://docs.python.org/3/reference/compound_stmts.html#grammar-token-parameter
-.. [#] Of course this is not possible with standard python classes
- and their instances.
-
Release 0.1.4
~~~~~~~~~~~~~
@@ 172,3 186,7 @@ Release 0.1.1
This was the initial release.
+.. [#] Silly me discovered about the shutdown of pythonhosted.org
+ after version 0.2.0 was uploaded.
+.. [#] Of course this is not possible with standard python classes
+ and their instances.
@@ 26,7 26,7 @@ except IOError:
sys.path.insert(0, "tests")
setup(name="gf3",
- version='0.2.0',
+ version='0.2.1',
description="A package with lisp-like generic functions for python 3.",
long_description = long_description,
keywords="generic-function multi-method",
@@ 44,7 44,7 @@ setup(name="gf3",
author="Gerald Klix",
author_email="gf@klix.ch",
packages=['gf'],
- url="https://pythonhosted.org/gf3/",
+ url="http://gf3.klix.ch/",
zip_safe=True,
test_suite="testgo",
license="PSF",