Last active
September 21, 2024 16:59
-
-
Save NicolasBizzozzero/6d4ca63f8482a1af99b0ed022c13b041 to your computer and use it in GitHub Desktop.
Python template of a comprehensive header, with shebang, docstring, GPLv3 license and all metadata.
This file contains 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 | |
""" Short description of this Python module. | |
Longer description of this module. | |
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/>. | |
""" | |
__author__ = "One solo developer" | |
__authors__ = ["One developer", "And another one", "etc"] | |
__contact__ = "[email protected]" | |
__copyright__ = "Copyright $YEAR, $COMPANY_NAME" | |
__credits__ = ["One developer", "And another one", "etc"] | |
__date__ = "YYYY/MM/DD" | |
__deprecated__ = False | |
__email__ = "[email protected]" | |
__license__ = "GPLv3" | |
__maintainer__ = "developer" | |
__status__ = "Production" | |
__version__ = "0.0.1" |
Handy. Thanks!
Thank you. Just what I was looking for. Thanks for sharing.
Thanks for sharing!
Thank you! :-)
Thanks for sharing!
Thank you very much
Thank you very much.!
Thanks for sharing!
Thanks for sharing!
Nice ! THX
Thank you! :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I like this header style! Thanks for sharing.