File tree 4 files changed +15
-11
lines changed
4 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 7
7
.coverage
8
8
.pytest_cache /
9
9
venv /
10
+ * .egg-info /
Original file line number Diff line number Diff line change @@ -85,8 +85,7 @@ def main(debug_mode=False):
85
85
parser .print_help ()
86
86
87
87
88
- if __name__ == '__main__' :
89
- parser = parser_cli ()
90
- args = parser .parse_args ()
91
- debug ('args variable' , args , args .debug )
92
- main (args .debug )
88
+ parser = parser_cli ()
89
+ args = parser .parse_args ()
90
+ debug ('args variable' , args , args .debug )
91
+ main (args .debug )
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
- setup (
4
- name = 'commit-helper' ,
5
- version = '3.0.0' ,
6
- packages = ['commit_helper' ],
7
- entry_points = {
3
+ setup ( # pragma: no cover
4
+ name = 'commit-helper' ,
5
+ version = '3.0.0' ,
6
+ packages = ['commit_helper' ],
7
+ entry_points = {
8
8
'console_scripts' : [
9
9
'commit = commit_helper.__main__:main'
10
10
]
11
- }
11
+ },
12
+ install_requires = [
13
+ 'pyyaml' ,
14
+ 'argparse' ,
15
+ ],
12
16
)
You can’t perform that action at this time.
0 commit comments