diff --git a/propka/__main__.py b/propka/__main__.py new file mode 100644 index 0000000..3aa53ea --- /dev/null +++ b/propka/__main__.py @@ -0,0 +1,8 @@ +"""Allow the PROPKA package to be run as a program. + +For example, `python -m propka` +""" +from .run import main + +if __name__ == "__main__": + main()