mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 09:22:38 +02:00
* Re-organize the documentation * Fix encoding errors for python 2 * Document the dependencies. Fixes #199 * Add a make update command. Fixes #211
14 lines
279 B
Python
14 lines
279 B
Python
# -*- coding: utf-8 -*-
|
|
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'
|
|
|
|
version = '1.0'
|
|
release = '1.0'
|
|
|
|
exclude_patterns = ['_build']
|
|
pygments_style = 'sphinx'
|