Skip to content

Commit

Permalink
Updated with pull
Browse files Browse the repository at this point in the history
  • Loading branch information
eggimasv authored and eggimasv committed Feb 23, 2017
2 parents a1224a2 + 7e55b5c commit 5ff6594
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
10 changes: 9 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
# sys.path.insert(0, os.path.abspath('.'))

# Support markdown
from recommonmark.parser import CommonMarkParser

source_parsers = {
'.md': CommonMarkParser,
}


on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
if on_rtd:
import inspect
Expand Down Expand Up @@ -52,7 +60,7 @@
templates_path = ['_templates']

# The suffix of source filenames.
source_suffix = '.rst'
source_suffix = ['.rst', '.md']

# The encoding of source files.
# source_encoding = 'utf-8-sig'
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ numpy
yaml
# energy_demand
# smif
recommonmark

8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[metadata]
name = energy_demand
name = HIgh Resolution Energy (HIRE)
summary = ITRC-MISRTAL Energy Demand Model
author = Will Usher
author-email = william.usher@ouce.ox.ac.uk
author = Sven Eggimann
author-email = sven.eggimann@ouce.ox.ac.uk
license = mit
home-page = http://www.itrc.org
description-file = README.rst
description-file = README.md
# Add here all kinds of additional classifiers as defined under
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifier =
Expand Down

0 comments on commit 5ff6594

Please sign in to comment.