Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
Changes
=======

1.0a1 (2018-09-20)
1.0.0 (2019-07-31)
------------------

Initial release.
First production release. There have been no changes since 1.0a1.

1.0a1 (2018-09-20)
------------------

Initial release.
60 changes: 30 additions & 30 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('..'))

sys.path.insert(0, os.path.abspath(".."))


# -- Project information -----------------------------------------------------

project = 'jsonseq'
copyright = '2018, Sean Gillies'
author = 'Sean Gillies'
project = "jsonseq"
copyright = "2018, Sean Gillies"
author = "Sean Gillies"

# The short X.Y version
version = ''
version = ""
# The full version, including alpha/beta/rc tags
release = '1.0a1'
release = "1.0a1"


# -- General configuration ---------------------------------------------------
Expand All @@ -39,23 +40,23 @@
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.viewcode',
'numpydoc',
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.viewcode",
"numpydoc",
]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = ".rst"

# The master toctree document.
master_doc = 'index'
master_doc = "index"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand All @@ -67,7 +68,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = None
Expand All @@ -78,7 +79,7 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'alabaster'
html_theme = "alabaster"

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
Expand All @@ -89,7 +90,7 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ["_static"]

# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
Expand All @@ -105,7 +106,7 @@
# -- Options for HTMLHelp output ---------------------------------------------

# Output file base name for HTML help builder.
htmlhelp_basename = 'jsonseqdoc'
htmlhelp_basename = "jsonseqdoc"


# -- Options for LaTeX output ------------------------------------------------
Expand All @@ -114,15 +115,12 @@
# 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',
Expand All @@ -132,19 +130,15 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'jsonseq.tex', 'jsonseq Documentation',
'Sean Gillies', 'manual'),
(master_doc, "jsonseq.tex", "jsonseq Documentation", "Sean Gillies", "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, 'jsonseq', 'jsonseq Documentation',
[author], 1)
]
man_pages = [(master_doc, "jsonseq", "jsonseq Documentation", [author], 1)]


# -- Options for Texinfo output ----------------------------------------------
Expand All @@ -153,9 +147,15 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'jsonseq', 'jsonseq Documentation',
author, 'jsonseq', 'One line description of project.',
'Miscellaneous'),
(
master_doc,
"jsonseq",
"jsonseq Documentation",
author,
"jsonseq",
"One line description of project.",
"Miscellaneous",
)
]


Expand All @@ -174,7 +174,7 @@
# epub_uid = ''

# A list of files that should not be packed into the epub file.
epub_exclude_files = ['search.html']
epub_exclude_files = ["search.html"]


# -- Extension configuration -------------------------------------------------
2 changes: 1 addition & 1 deletion jsonseq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The jsonseq package."""

__version__ = "1.0a1"
__version__ = "1.0.0"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@

setup(
name="jsonseq",
version="1.0a1",
version="1.0.0",
description="Python support for RFC 7464 JSON text sequences",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sgillies/jsonseq",
author="Sean Gillies",
author_email="sean.gillies@gmail.com",
classifiers=[
"Development Status :: 3 - Alpha",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
Expand Down