We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d288d1c + a7df079 commit b095dbeCopy full SHA for b095dbe
pyauthenticator/__main__.py
@@ -11,7 +11,7 @@
11
)
12
13
14
-def main():
+def command_line_parser():
15
"""
16
Main function primarly used for the command line interface
17
@@ -46,4 +46,4 @@ def main():
46
47
48
if __name__ == "__main__":
49
- main()
+ command_line_parser()
setup.py
@@ -23,7 +23,7 @@
23
cmdclass=versioneer.get_cmdclass(),
24
entry_points={
25
"console_scripts": [
26
- 'pyauthenticator=pyauthenticator.__main__:main'
+ 'pyauthenticator=pyauthenticator.__main__:command_line_parser'
27
]
28
}
29
0 commit comments