Skip to main content

A tool for automatically adding your license as a header in your source code.

Project description

add-license-header

A tool for automatically adding your license as a header in your source code.

Installation

pip install add-license-header

pre-commit hook

See pre-commit for instructions.

Sample with license template file:

- repo: https://github.com/arkinmodi/add-license-header
  rev: v2.2.0
  hooks:
      - id: add-license-header
        args:
            - --license-file
            - MIT-LICENSE.template

Sample with inline license template:

- repo: https://github.com/arkinmodi/add-license-header
  rev: v2.2.0
  hooks:
      - id: add-license-header
        args:
            - --license
            - |
                MIT License

                Copyright (c) $create_year $author_name
                ...

Template Options

You can use template markers to dynamically change your license.

Template Marker Default CLI Flag
$author_name Empty string. --author-name
$create_year Introduction into git history. If not managed by git, then the current year. --create-year
$edit_year Current year. --edit-year
$year_delimiter ", " --year-delimiter

For example:

MIT License

Copyright (c) $create_year $author_name

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

What does it do?

$ cat example.py
print("Hello World")

$ add-license-header \
    --license-file MIT-LICENSE.template \
    --author-name 'Arkin Modi' \
    --create-year 2023 \
    example.py
updating license in example.py

$ cat example.py
# LICENSE HEADER MANAGED BY add-license-header
#
# MIT License
#
# Copyright (c) 2023 Arkin Modi
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#

print("Hello World")

Managed vs Un-Managed

In managed mode (the default), the license header will contain LICENSE HEADER MANAGED BY add-license-header in first line of the comment block. This enabled the tool to be able to accurately find the license header and allows you to place the license header anywhere in the file.

In unmanaged mode, enabled with the --unmanaged flag, the top-most comment block will be assumed to be the license header.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

add_license_header-2.2.0.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

add_license_header-2.2.0-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file add_license_header-2.2.0.tar.gz.

File metadata

  • Download URL: add_license_header-2.2.0.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for add_license_header-2.2.0.tar.gz
Algorithm Hash digest
SHA256 176f9afa84eb98351a8bd1383ed62608be54bfcf44294775a752ddf77dc26181
MD5 e16f50644abfca89c94fe76b87caecb7
BLAKE2b-256 c27a020db669220a5f84c19c637bdfda5075454843f03a42bda3550a11d23a31

See more details on using hashes here.

File details

Details for the file add_license_header-2.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for add_license_header-2.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 24a2d226807c63529744c8eb9100d7d2c203cfe0faf7a61c912160b7b949c80b
MD5 ba0a70cccbd891450d022933d52770a1
BLAKE2b-256 0536c62aeec1572baed26e11d3f32fd4190ecbd51a9d76e4abd747c594e27a7b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page