Skip to content

Commit

Permalink
Update conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
RobiFag committed May 13, 2020
1 parent 560ff70 commit 8017e5f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
import datetime


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

project = u'Manuale - TITOLO' ######## DA MODIFICARE ########
copyright = u'2020, Gter srl'
now = datetime.datetime.now()
copyright = u'{}, Gter srl'.format(now.year)
author = u'Gter srl'

# The short X.Y version
Expand All @@ -46,6 +48,10 @@
'sphinx.ext.ifconfig',
'sphinx.ext.viewcode',
'sphinx.ext.githubpages',
'sphinx.ext.extlinks',
'sphinx.ext.doctest',
'sphinx.ext.autodoc',
'sphinx.ext.imgmath',
]

# Add any paths that contain templates here, relative to this directory.
Expand Down

0 comments on commit 8017e5f

Please sign in to comment.