Skip to content

Commit

Permalink
Fix setup and manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Mar 24, 2016
1 parent 3db182d commit f40167f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Top level.
include *.txt
include *.rst
include *.md

# Non-python files.
recursive-include jupyter_sphinx_theme *
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
def read_file(name):
"""Read file name (without extension) to string."""
cur_path = os.path.dirname(__file__)
exts = ('txt', 'rst')
exts = ('txt', 'rst', 'md')
for ext in exts:
path = os.path.join(cur_path, '.'.join((name, ext)))
if os.path.exists(path):
Expand Down

0 comments on commit f40167f

Please sign in to comment.