-
-
Save zhiweio/9837e4c0ae0918b8157b88441e7f5207 to your computer and use it in GitHub Desktop.
Lazy C&P header
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
{Description} | |
{License_info} | |
""" | |
# Futures | |
from __future__ import print_function | |
# […] | |
# Built-in/Generic Imports | |
import os | |
import sys | |
# […] | |
# Libs | |
import pandas as pd # Or any other | |
# […] | |
# Local modules | |
from {path} import {class} | |
# […] | |
__author__ = '{author}' | |
__copyright__ = 'Copyright {year}, {project_name}' | |
__credits__ = ['{credit_list}'] | |
__license__ = '{license}' | |
__version__ = '{mayor}.{minor}.{rel}' | |
__maintainer__ = '{maintainer}' | |
__email__ = '{contact_email}' | |
__status__ = '{dev_status}' # Prototype, Development or Production |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment