File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
- 0.0.4
1
+ 0.0.5
Original file line number Diff line number Diff line change 15
15
<utility> The name of the utility to run
16
16
"""
17
17
import sys
18
+ import traceback
18
19
from importlib import import_module
19
20
20
21
import docopt
@@ -41,6 +42,7 @@ def main():
41
42
try :
42
43
module = import_module (".utilities." + module_name , package = "mwcites" )
43
44
except ImportError :
45
+ sys .stderr .write (traceback .format_exc ())
44
46
sys .stderr .write ("Could not find utility {0}.\n " .format (module_name ))
45
47
sys .exit (1 )
46
48
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ def requirements(fname):
23
23
packages = find_packages (),
24
24
entry_points = {
25
25
'console_scripts' : [
26
- 'extract_cites =mwcites.extract_cites :main'
26
+ 'mwcitations =mwcites.mwcitations :main'
27
27
],
28
28
},
29
29
long_description = read ('README.rst' ),
You can’t perform that action at this time.
0 commit comments