Skip to content

Instantly share code, notes, and snippets.

@bismarckjunior
Last active August 23, 2017 13:36
Show Gist options
  • Save bismarckjunior/a9adbb026e59ca74e39d1835cc0e2826 to your computer and use it in GitHub Desktop.
Save bismarckjunior/a9adbb026e59ca74e39d1835cc0e2826 to your computer and use it in GitHub Desktop.
Copyright headers
#=============================================================================#
# Copyright (c) YYYY Souza Jr, B. G. <bismarckgomes@gmail.com> #
# This file is part of <Project Name>. #
# Licensing information can be found in the LICENSE file. #
#=============================================================================#
class Test:
"""
Example of class documentation.
References:
[1] Author (YYYY) - Book title, V1. Publisher. Chp 5, pp 55-60.
"""
pass
#=============================================================================#
# Copyright (c) YYYY <Company> - All Rights Reserved #
# This file is part of <Project Name>. #
# Unauthorized copying of this file, via any medium is strictly prohibited. #
# Proprietary and confidential. #
# #
# Developers: #
# - Bismarck Gomes Souza Junior <bismarckgomes@gmail.com> #
# - Bismarck Gomes Souza Junior <bismarckgomes@gmail.com> #
#=============================================================================#
class Test:
"""
Example of class documentation.
References:
[1] Author (YYYY) - Book title, V1. Publisher. Chp 5, pp 55-60.
"""
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment