diff --git a/cobra.py b/cobra.py index aa7f1ca6..a18fb30d 100755 --- a/cobra.py +++ b/cobra.py @@ -1,13 +1,22 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +""" + cobra + ~~~~~ + + Implements cobra entry + + :author: Feei + :homepage: https://github.com/wufeifei/cobra + :license: MIT, see LICENSE for more details. + :copyright: Copyright (c) 2017 Feei. All rights reserved +""" import re import sys from cobra import main - if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit(main()) -