Skip to content

Commit

Permalink
Merge pull request #1007 from clinssen/doc-copyright
Browse files Browse the repository at this point in the history
Add copyright notice to documentation
  • Loading branch information
clinssen authored Mar 19, 2024
2 parents 78ab4c0 + 458bdec commit 4e02bf3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/sphinx-apidoc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import os
import pip
import sys
import datetime

# pip.main(['install', 'Sphinx==1.5.6'])

Expand Down Expand Up @@ -158,8 +159,9 @@
# source_suffix = '.rst'

# General information about the project.
current_year = datetime.datetime.now().year
project = u'NESTML documentation'
copyright = u'2004, nest-simulator'
copyright = f'2004-{current_year}, licensed under the GNU General Public License (GPL) v2 or later'
author = u'nest-simulator'


Expand Down Expand Up @@ -228,7 +230,7 @@
htmlhelp_basename = 'NESTMLdoc'

html_show_sphinx = False
html_show_copyright = False
html_show_copyright = True

# This way works for ReadTheDocs
# With this local 'make html' is broken!
Expand Down

0 comments on commit 4e02bf3

Please sign in to comment.