dotfiles/emacs/emacs.d/my-templates/python.py
2020-04-15 13:15:10 +02:00

58 lines
1.2 KiB
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Name: `(file-name-nondirectory (buffer-file-name))`
"""
{Description}
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
"""
# Generic imports
import os
import sys
# Libs
#import panda as pd
# Own modules
#from {path} import {class}
#from {path} import {function}
__author__ = '`user-full-name`'
__copyright__ = 'Copyright `(format-time-string "%Y")`, `(file-name-nondirectory (buffer-file-name))`'
__credits__ = ['`user-full-name`']
__license__ = 'GPLv3'
__version__ = '{mayor}.{minor}.{rel}'
__maintainer__ = '`user-full-name`'
__email__ = '`user-mail-address`'
__status__ = 'dev'
# Code
$0
def main():
pass
if __name__ == '__main__':
main()