Skip to content

Commit

Permalink
Cleanup conf.py (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadair authored Mar 11, 2024
1 parent ff5c864 commit 5a578b6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions {{ cookiecutter.package_name }}/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,18 @@
# full list see the documentation:
# http://www.sphinx-doc.org/en/master/config


import datetime

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

# The full version, including alpha/beta/rc tags
from {{ cookiecutter.module_name }} import __version__


release = __version__

project = "{{ cookiecutter.package_name }}"
copyright = str(datetime.datetime.now().year) + " , {{ cookiecutter.author_name }}" # noqa: A001
author = "{{ cookiecutter.author_name }}"
copyright = f"{datetime.datetime.now().year}, {author}" # noqa: A001

# -- General configuration ---------------------------------------------------

Expand Down

0 comments on commit 5a578b6

Please sign in to comment.