Skip to content

Commit

Permalink
bump version to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mscarey committed Jul 18, 2020
1 parent 8baa608 commit f21f7af
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion anchorpoint/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from anchorpoint.textselectors import TextQuoteSelector
from anchorpoint.textselectors import TextPositionSelector

__version__ = "0.2.1"
__version__ = "0.3.0"
25 changes: 13 additions & 12 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

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

project = 'Anchorpoint'
copyright = '2019, Matt Carey'
author = 'Matt Carey'
project = "Anchorpoint"
copyright = "2019-2020, Matt Carey"
author = "Matt Carey"

# The full version, including alpha/beta/rc tags
release = anchorpoint.__version__
Expand All @@ -32,34 +32,35 @@
# ones.
extensions = [
"sphinx.ext.autodoc",
'sphinx_autodoc_typehints',
"sphinx_autodoc_typehints",
"sphinx.ext.intersphinx",
]

intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
intersphinx_mapping = {"python": ("https://docs.python.org/3", None)}

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

# 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"]


# -- Options for HTML output -------------------------------------------------

# 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"

html_theme_options = {
'logo': 'stitch.jpg',
'github_user': 'mscarey',
'github_repo': 'anchorpoint',
"logo": "stitch.jpg",
"github_user": "mscarey",
"github_repo": "anchorpoint",
}
# 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"]

1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
long_description_content_type="text/markdown",
url="https://github.com/mscarey/anchorpoint",
packages=setuptools.find_packages(exclude=("tests",)),
install_requires=["marshmallow"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: Free To Use But Restricted",
Expand Down

0 comments on commit f21f7af

Please sign in to comment.