From 480939afe54fc6e8e79d6d74b8a8a3991276d460 Mon Sep 17 00:00:00 2001 From: Alexis M Date: Mon, 7 Oct 2019 00:07:25 +0200 Subject: Remove support for python2. In the same move : - use a setup.cfg file for packaging - remove the use of six --- docs/conf.py | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'docs') diff --git a/docs/conf.py b/docs/conf.py index 176f694..4f26391 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,14 +1,15 @@ -# -*- coding: utf-8 -*- +# coding: utf8 import sys, os -templates_path = ['_templates'] -source_suffix = '.rst' -master_doc = 'index' -project = u'I hate money' -copyright = u'2011, The \'I hate money\' team' +templates_path = ["_templates"] +source_suffix = ".rst" +master_doc = "index" -version = '1.0' -release = '1.0' +project = u"I hate money" +copyright = u"2011, The 'I hate money' team" + +version = "1.0" +release = "1.0" +exclude_patterns = ["_build"] +pygments_style = "sphinx" -exclude_patterns = ['_build'] -pygments_style = 'sphinx' -- cgit v1.1