From e36f014e8e6dfc78554eb3a44c15ca02fafc558c Mon Sep 17 00:00:00 2001 From: Feei Date: Mon, 18 Sep 2017 19:55:27 +0800 Subject: [PATCH] add annotation --- cobra.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) 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()) -