Skip to content

Commit 9b9508d

Browse files
committed
Increments version to 0.0.5
1 parent 68d9fea commit 9b9508d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.4
1+
0.0.5

mwcites/mwcitations.py

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<utility> The name of the utility to run
1616
"""
1717
import sys
18+
import traceback
1819
from importlib import import_module
1920

2021
import docopt
@@ -41,6 +42,7 @@ def main():
4142
try:
4243
module = import_module(".utilities." + module_name, package="mwcites")
4344
except ImportError:
45+
sys.stderr.write(traceback.format_exc())
4446
sys.stderr.write("Could not find utility {0}.\n".format(module_name))
4547
sys.exit(1)
4648

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def requirements(fname):
2323
packages=find_packages(),
2424
entry_points = {
2525
'console_scripts': [
26-
'extract_cites=mwcites.extract_cites:main'
26+
'mwcitations=mwcites.mwcitations:main'
2727
],
2828
},
2929
long_description = read('README.rst'),

0 commit comments

Comments
 (0)