Skip to content

Commit

Permalink
Merge pull request #8 from QuantEcon/quickstart-feature
Browse files Browse the repository at this point in the history
ENH: Adding MANIFEST file and creating _init_ files
  • Loading branch information
mmcky committed Jul 19, 2019
2 parents ad178bf + da1852a commit 684ca48
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
Jupinx.egg-info/

jupinx/cmd/__pycache__/
jupinx/util/__pycache__/
jupinx/__pycache__/
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include README.md
recursive-include jupinx/templates *
6 changes: 6 additions & 0 deletions jupinx/cmd/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""
jupinx.cmd
~~~~~~~~~~
Modules for command line executables.
"""
Binary file removed jupinx/cmd/__pycache__/quickstart.cpython-37.pyc
Binary file not shown.
1 change: 0 additions & 1 deletion jupinx/cmd/quickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,6 @@ def ask_user(d: Dict) -> None:
if do_prompt('%s package has been found in your system. Would you like to upgrade it? (y/n)' % (name), 'y', boolean):
d['extensions'].append(name)
except ImportError as e:
print('Indicate if you would like to install the following package')
if do_prompt('%s: %s (y/n)' % (name, description), 'y', boolean):
d['extensions'].append(name)

Expand Down
6 changes: 6 additions & 0 deletions jupinx/util/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""
jupinx.util
~~~~~~~~~~~
Utility functions for Jupinx.
"""
Binary file removed jupinx/util/__pycache__/template.cpython-37.pyc
Binary file not shown.

0 comments on commit 684ca48

Please sign in to comment.