Skip to content

Commit

Permalink
docs: Set proper year & project name in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Stranger6667 committed Feb 6, 2020
1 parent 46307fa commit 93c2bc3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import datetime
import os
import sys

Expand Down Expand Up @@ -49,9 +50,9 @@
master_doc = "index"

# General information about the project.
project = "schemathesis"
copyright = "2017, platform team"
author = "platform team"
project = "Schemathesis"
copyright = "{year}, Kiwi.com".format(year=datetime.date.today().year)
author = "Kiwi.com"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -97,7 +98,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 = []


# -- Options for HTMLHelp output ------------------------------------------
Expand Down

0 comments on commit 93c2bc3

Please sign in to comment.