diff options
| author | Alexis M <alexis@notmyidea.org> | 2019-10-07 00:07:25 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2019-10-11 19:52:37 +0200 |
| commit | 480939afe54fc6e8e79d6d74b8a8a3991276d460 (patch) | |
| tree | 17ef49f564a1b976bd82ed488dcbcfc647336db0 /docs | |
| parent | 9fe84bc1a2ef088e345e6215cf2e2fa3b53fc2da (diff) | |
| download | ihatemoney-mirror-480939afe54fc6e8e79d6d74b8a8a3991276d460.zip ihatemoney-mirror-480939afe54fc6e8e79d6d74b8a8a3991276d460.tar.gz ihatemoney-mirror-480939afe54fc6e8e79d6d74b8a8a3991276d460.tar.bz2 | |
Remove support for python2.
In the same move :
- use a setup.cfg file for packaging
- remove the use of six
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/conf.py | 21 |
1 files changed, 11 insertions, 10 deletions
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' |
