Skip to content
Snippets Groups Projects
Commit 769c6d1c authored by Chris Holdgraf's avatar Chris Holdgraf
Browse files

bumping version

parent efa86fb9
No related branches found
No related tags found
No related merge requests found
......@@ -3,16 +3,16 @@ import sys
import os
import os.path as op
from glob import glob
from jupyter_book import __version__
# Location of the template files we use for cloning
template_files = glob(op.join('jupyter_book', 'book_template', '**', '*'), recursive=True)
template_files = [ii.replace('jupyter_book' + os.sep, '', 1) for ii in template_files]
PACKAGE_DATA = {"jupyter_book": template_files}
version = 'v0.1'
setup(
name='jupyter-book',
version=version,
version=__version__,
install_requires=[
'ruamel.yaml',
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment