common header format python

Solutions on MaxInterview for common header format python by the best coders in the world

showing results for - "common header format python"
Isidora
30 Mar 2017
1# The first line of each file shoud be #!/usr/bin/env python
2# Next should be the docstring with a description.
3# All code, including import statements, should follow the docstring.
4# Import built-in modules first, followed by third-party modules, followed by any changes to the path and your own modules.
5# Next should be authorship information
6__author__ = "Rob Knight, Gavin Huttley, and Peter Maxwell"
7__copyright__ = "Copyright 2007, The Cogent Project"
8__credits__ = ["Rob Knight", "Peter Maxwell", "Gavin Huttley",
9                    "Matthew Wakefield"]
10__license__ = "GPL"
11__version__ = "1.0.1"
12__maintainer__ = "Rob Knight"
13__email__ = "rob@spot.colorado.edu"
14__status__ = "Production"