Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
add annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
FeeiCN committed Sep 18, 2017
1 parent 26a565a commit e36f014
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions cobra.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
cobra
~~~~~
Implements cobra entry
:author: Feei <feei@feei.cn>
: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())

0 comments on commit e36f014

Please sign in to comment.